home *** CD-ROM | disk | FTP | other *** search
/ IBM OEM Software Product … CD For PC Manufacturers / IBM OEM Software - Product Sampler CD for PC Manufacturers.iso / InternetIntranets / Notes / LOTUS019.DSK / CERTCA.NTF (.txt) next >
Lotus Notes Database  |  1997-09-10  |  1MB  |  9,253 lines

  1. Certificate Authority
  2. #1StdNotes46SSLAuth
  3. O=Lotus Notes
  4. O=Lotus Notes
  5. PURSAFO
  6. |.:#U
  7. O=Lotus Notes
  8. CN=Lotus Notes Template Development/O=Lotus Notes
  9. PURSAFO
  10. Fde!f^^
  11. $Readers
  12. $TITLE
  13. $Index
  14. $Formula
  15. $FormulaClass
  16. $ViewFormat
  17. $Comment
  18. CN=Lotus Notes Template Development/O=Lotus Notes
  19. MkX"V[/m
  20. CN=Scott Davidson/O=IrisCN=Michael Decoteau/O=IrisCN=Andrew Wharton/O=IrisCN=Scott Davidson/O=IrisCN=Michael Decoteau/O=IrisCN=Scott Davidson/O=IrisCN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  21. ###############################
  22. $Modified
  23.     1S2S3S
  24. $TITLE$FormPrivs$FormUsers$Body$Flags$Class$Modified$Comment$AssistTrigger$AssistType$AssistFlags$UpdatedBy$$FormScript_O
  25. $Flags
  26.     0SL1S4S5S3724
  27. $TITLE
  28. CN=Michael Decoteau/O=Iris#################################
  29. 30719
  30. CN=Michael Decoteau/O=Iris############################################
  31. 2CN=Michael Decoteau/O=Iris
  32. 30719
  33. CN=Michael Decoteau/O=Iris###################
  34. CN=Michael Decoteau/O=IrisCN=orr/O=NHLCN=Michael Decoteau/O=IrisCN=Bobby Orr/O=NHLCN=Michael Decoteau/O=IrisCN=Andrew Wharton/O=IrisCN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus NotesCertLibs34Q1###################
  35. MkX"V[/m
  36. CASetup
  37. CN=Michael Decoteau/O=Iris
  38. affo`
  39. TDlsftCertificate Authority
  40. #1StdNotes46SSLAuth
  41. ##########################################################
  42. CASetupG3
  43. CN=James Cunningham/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes######
  44. System\Web Pages|WebPagesV
  45. PrivateTitle$Conflict$REF
  46. WebPage
  47.     L1S5S1
  48. PrivateTitle
  49. PrivateTitle&
  50. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  51. ##########################################################
  52. Web Cert PickupWebCertPickupCD
  53. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################
  54. FramePickupCert
  55. Anonymous############
  56. O=Lotus Notes
  57. O=Lotus Notes
  58. PURSAFO
  59. |.:#U
  60. O=Lotus Notes
  61. CN=Lotus Notes Template Development/O=Lotus Notes
  62. PURSAFO
  63. Fde!f^^
  64. $ACLDigest
  65. '++LotusScript Development Environment:2:5:(Options):0:74
  66. Option Public
  67. '++LotusScript Development Environment:2:5:(Forward):0:1
  68. Declare Function GetString2(Byval StringIndex As Integer, arg1 As String, arg2 As String) As String
  69. Declare Public Function ApproveCertificateRequest(doc As NotesDocument, keyFile As String, password As String) As Integer
  70. Declare Public Function DenyCertificateRequest(doc As NotesDocument) As Integer
  71. Declare Sub OutMsg(msg As String)
  72. Declare Public Function RejectCertificate(doc As NotesDocument) As Integer
  73. Declare Function FixFileName( fn As String ) As String
  74. Declare Function UpdateCACert(doc As NotesDocument, certFile As String) As Integer
  75. Declare Function GetString(Byval StringIndex As Integer) As String
  76. Declare Function GetString1(Byval StringIndex As Integer, arg1 As String) As String
  77. Declare Sub NukeIt( fn As String )
  78. Declare Sub UpdateCAKeyProfile(doc As NotesDocument)
  79. Declare Sub SendNotification(form As String, doc As NotesDocument, subject As String, arg As String)
  80. Declare Function SubmitCertificateRequest(doc As NotesDocument) As Integer
  81. Declare Function ReadFromFile (fn As String) As Variant
  82. Declare Function ViewCert (EncodedCertValue As Variant, PKCS As String) As Variant
  83. Declare Function ResubmitRequest(doc As NotesDocument) As Integer
  84. Declare Sub WriteToFile (FnLinkList As Variant, fn As String)
  85. Declare Function BreakItUp (LongCert As String) As Variant
  86. Declare Sub CertToPickupCert(doc As NotesDocument)
  87. Declare Function LocalPath( dbPath$ ) As String
  88. '++LotusScript Development Environment:2:5:(Declarations):0:10
  89. Declare Function ProcessSecurityCmd Lib "_dmsecadm" (_
  90. Byval cmdName As String,_
  91. Byval cmdArgs As String, _
  92. Byval OutBuf As String, _
  93. Byval szOutBuf As Integer) As Integer
  94. Declare Function SignCertificate Lib "_dmsecadm" ( _
  95. Byval cmdArgs As String, Byval certInfo As String, _
  96. Byval certBuf As String, Byval certBufLen As Integer, _
  97. Byval msgBuf As String, Byval msgBufSize As Integer) As Integer
  98. ' the above declarations refer to functions in the security dll which must be present
  99. ' wherever this is run
  100. Const dbg = False ' change this and you must force recompile of it all!
  101. Const maxCertBufLen% = 2048 ' don't just change these here...
  102. Const maxMsgBufLen% = 1024 ' ...these values appear as literals in declartions as well
  103. ' Define some configurable strings here: (typically alias names for design elements)
  104. Const strPickupView = "Pickup"
  105. Const strKeyAdminView = "Keyring Administration"
  106. Const strCertInfoForm = "CertificateInformation"
  107. ' String ids for translatable text:  (strings in GetString2)
  108. Const ids_PasswordTitle = 3
  109. Const ids_PasswordPrompt = 4
  110. Const ids_KeyFileTitle = 5
  111. Const ids_KeyFilePrompt = 6
  112. Const ids_DenyTitle = 7
  113. Const ids_DenyPrompt = 8
  114. Const ids_Error = 9
  115. Const ids_CACert = 10
  116. Const ids_OldPasswordPrompt = 11
  117. Const ids_NewPasswordPrompt = 12
  118. Const ids_Cancel = 13
  119. Const ids_YourReq = 14
  120. Const ids_YourCert = 15
  121. Const ids_DNSPrompt = 16
  122. Const ids_DNSTitle = 17
  123. Const ids_PasswordChanged = 18
  124. ' Error ids for translatable error text:   (strings in GetString2)
  125. Const err_NotifyMail = 100
  126. Const err_NoMailAddress = 101
  127. Const err_ApprovalFailed = 102
  128. Const err_DenyFailed = 103
  129. Const err_NoKyr = 104
  130. Const err_NoKyrPwd = 105
  131. Const err_NoNewPwd = 106
  132. Const err_RejectFailed = 107
  133. Const err_SubmitFailed = 108
  134. '++LotusScript Development Environment:2:1:GetString2:1:8
  135. Function GetString2(Byval StringIndex As Integer, arg1 As String, arg2 As String) As String
  136.      '
  137.      '  Here's where all the strings needing translation are...
  138.      ' The actual string ids are defined in the (declarations) section and are referred to throughout the code.
  139.      ' You can pass in up to two arguments as necessary.
  140.      ' 
  141.      Select Case StringIndex
  142.      '          
  143.      ' Regular strings:
  144.      '
  145.      Case ids_PasswordTitle
  146.           GetString2 = "Enter Password"
  147.      Case ids_PasswordPrompt
  148.           GetString2 = "Enter password for key file " + arg1
  149.      Case ids_KeyFileTitle
  150.           GetString2 = "Key File"
  151.      Case ids_KeyFilePrompt
  152.           GetString2 = "Enter path for key file"
  153.      Case ids_DenyTitle
  154.           GetString2 = "Reason"
  155.      Case ids_DenyPrompt
  156.           GetString2 = "Reason for denial"
  157.      Case ids_Error
  158.           GetString2 = "Error"
  159.      Case ids_CACert     ' Tags our entry in kyr display
  160.           GetString2 = "CA Certificate"
  161.      Case ids_OldPasswordPrompt
  162.           GetString2 = "Input the original password"
  163.      Case ids_NewPasswordPrompt
  164.           GetString2 = "Input the new password"
  165.      Case ids_PasswordChanged
  166.           GetString2 = "Key file password successfully changed"
  167.      Case ids_Cancel
  168.           GetString2 = "Operation Cancelled"
  169.      Case ids_YourReq
  170.           GetString2 = "Your Certificate Request"
  171.      Case ids_YourCert
  172.           GetString2 = "Your Certificate"
  173.      Case ids_DNSPrompt
  174.           GetString2 = "Please enter the dns host name for your site"
  175.      Case ids_DNSTitle
  176.           GetString2 = "Site Host Name"
  177.      '
  178.      ' Error messages:
  179.      '
  180.      Case err_NotifyMail
  181.           GetString2 = "Error sending notification email to " + arg1
  182.      Case err_NoMailAddress
  183.           GetString2 = "Unable to notify - no email address provided"
  184.      Case err_ApprovalFailed
  185.           GetString2 = "Approval failed."
  186.      Case err_DenyFailed
  187.           GetString2 = "Denial failed."
  188.      Case err_NoKyr
  189.           GetString2 = "Key ring file name must be entered"
  190.      Case err_NoKyrPwd
  191.           GetString2 = "Key ring file password must be entered"
  192.      Case err_NoNewPwd
  193.           GetString2 = "You must input a new password"
  194.      Case err_RejectFailed
  195.           GetString2 = "Reject failed"
  196.      Case err_SubmitFailed
  197.           GetString2 = "Submit failed"
  198.      '
  199.      ' Anything else is trouble...
  200.      '
  201.      Case Else
  202.           GetString2 = "Error #" + Str(StringIndex) + ": " + arg1 + " " + arg2
  203.      End Select
  204. End Function
  205. '++LotusScript Development Environment:2:1:ApproveCertificateRequest:1:8
  206. Public Function ApproveCertificateRequest(doc As NotesDocument, keyFile As String, password As String) As Integer
  207.      ApproveCertificateRequest = True ' assume success
  208.      
  209.      Dim db As NotesDatabase
  210.      Set db = doc.ParentDatabase
  211.      Dim prof As NotesDocument
  212.      Set prof = db.GetProfileDocument("CAProfile")
  213.      '
  214.      Dim certBuf As String * 2048  ' maxCertBufLen%
  215.      Dim msgBuf As String * 1024   ' maxMsgBufLen%
  216.      
  217.      cmdArgs$ = "KeyFile=" & keyFile & ";Password=" & password & ";ValidDays=" & doc.ValidDays(0) & ";"
  218.      certInfo$ = doc.Certificate(0)
  219.      
  220.      If dbg Then Messagebox cmdArgs$
  221.      ret = SignCertificate(cmdArgs$, certInfo$, certBuf, maxCertBufLen%, msgBuf, maxMsgBufLen%)
  222.      
  223.      If ret Then 
  224.           OutMsg(msgBuf$)
  225.           ApproveCertificateRequest = False
  226.      Else 
  227.           
  228.           doc.Certificate = certBuf
  229.           doc.Approved = "1"
  230.           
  231.           ' now crack the cert and fill in some fields
  232.           
  233.           Dim cert As Variant
  234.           Dim subjItem As NotesItem
  235.           Dim IssItem As NotesItem
  236.           
  237.           cert = doc.Certificate
  238.           CertView = ViewCert( cert, "0" )
  239.           
  240.           doc.SubjOrgUnit = ""
  241.           doc.IssOrgUnit = ""
  242.           Set subjItem = doc.GetFirstItem( "SubjOrgUnit" )
  243.           Set issItem = doc.GetFirstItem( "IssOrgUnit" )
  244.           
  245.           Forall k In CertView
  246.                ' subject fields
  247.                If Left$( k, 11)  = "SubjectOrg:" Then doc.SubjOrganization = Right$(k, (Len(k)-12) )
  248.                If Left$( k, 18)  = "SubjectCommonName:" Then doc.SubjCommonName = Right$(k, (Len(k)-19) )
  249.                If Left$( k, 15)  = "SubjectOrgUnit:" Then subjItem.AppendToTextList(Right$(k, (Len(k)-16) )) 
  250.                If Left$( k, 12)  = "SubjectCity:" Then doc.SubjCity = Right$(k, (Len(k)-13) )
  251.                If Left$( k, 13)  = "SubjectState:" Then doc.SubjState = Right$(k, (Len(k)-14) )
  252.                If Left$( k, 15)  = "SubjectCountry:" Then doc.SubjCountry = Right$(k, (Len(k)-16) )
  253.                ' issuer fields
  254.                If Left$( k, 10)  = "IssuerOrg:" Then doc.IssOrganization = Right$(k, (Len(k)-11) )
  255.                If Left$( k, 17)  = "IssuerCommonName:" Then doc.IssCommonName = Right$(k, (Len(k)-18) )
  256.                If Left$( k, 14)  = "IssuerOrgUnit:" Then Call issItem.AppendToTextList( Right$(k, (Len(k)-15) ) )
  257.                If Left$( k, 11)  = "IssuerCity:" Then doc.IssCity = Right$(k, (Len(k)-12) )
  258.                If Left$( k, 12)  = "IssuerState:" Then doc.IssState = Right$(k, (Len(k)-13) )
  259.                If Left$( k, 14)  = "IssuerCountry:" Then doc.IssCountry = Right$(k, (Len(k)-15) )
  260.                ' valid dates
  261.                If Left$( k, 10)  = "StartDate:" Then doc.ValidBegDate = Right$(k, (Len(k)-10) )
  262.                If Left$( k, 8)    = "EndDate:" Then doc.ValidEndDate = Right$(k, (Len(k)-8) )
  263.           End Forall
  264.           
  265.           Call doc.Save(True, False)
  266.           
  267.           ' Send email to notify of approval if necessary.  We include a url they can use for pickup
  268.           '
  269.           dbPath$ = db.FilePath
  270.           If db.Server = "" Then  ' try to fix up if open locally
  271.                dbPath$ = LocalPath(dbPath$)
  272.           End If
  273.           
  274.           url$ = "http://" + prof.CASiteUrl(0) + "/" + dbPath$ +"/" + strPickupView + "/" + doc.PickupID(0) + "?OpenDocument"
  275.           Call SendNotification("MailCertRequestApproved", doc, GetString(ids_YourReq), url$) 
  276.      End If
  277. End Function
  278. '++LotusScript Development Environment:2:1:DenyCertificateRequest:1:8
  279. Public Function DenyCertificateRequest(doc As NotesDocument) As Integer
  280.      DenyCertificateRequest = True ' assume success
  281.      
  282.      doc.Approved = "D"
  283.      
  284.      Call doc.Save(True, False)
  285.      
  286.      Call SendNotification("MailCertRequestDenied", doc, GetString(ids_YourReq), doc.Reason(0))
  287. End Function
  288. '++LotusScript Development Environment:2:2:OutMsg:1:8
  289. Sub OutMsg(msg As String)
  290.      TrimBuf$ = Left$(msg, Instr(msg, Chr$(0))-1)  ' strip nulls
  291.      Messagebox TrimBuf$,48,"Error"
  292. End Sub
  293. '++LotusScript Development Environment:2:1:RejectCertificate:1:8
  294. Public Function RejectCertificate(doc As NotesDocument) As Integer
  295.      RejectCertificate = True ' assume success
  296.      
  297.      doc.Approved = "D"
  298.      
  299.      Call doc.Save(True, False)
  300.      
  301.      Call SendNotification("MailCertSubmitDenied", doc, GetString(ids_YourCert), doc.Reason(0))
  302. End Function
  303. '++LotusScript Development Environment:2:1:FixFileName:1:8
  304. Function FixFileName( fn As String ) As String
  305.      If (fn Like "*[:/\]*") Then
  306.           FixFileName = fn
  307.      Else
  308.           Dim session As New NotesSession
  309.           If IsDefined("UNIX") Then  
  310.                FixFileName = session.GetEnvironmentString( "Directory", True ) & "/" & fn
  311.           Else
  312.                FixFileName = session.GetEnvironmentString( "Directory", True ) & "\" & fn
  313.           End If
  314.      End If
  315. End Function
  316. '++LotusScript Development Environment:2:1:UpdateCACert:1:8
  317. Function UpdateCACert(doc As NotesDocument, certFile As String) As Integer
  318.      '
  319.      ' This creates the CACert document, which is a special document in the pickup view
  320.      ' Users can pick up the cert in the document so they can trust it.
  321.      '
  322.      ' For now we create a new one each time and let the pickup view sort them out.  This keeps
  323.      ' the previous documents around in case of mistakes.
  324.      '
  325.      UpdateCACert = True ' assume success
  326.      '
  327.      ' Create the document
  328.      Dim CADoc As NotesDocument
  329.      Set CADoc = doc.ParentDatabase.CreateDocument
  330.      '
  331.      ' These fields identify this as the special CACert document
  332.      CADoc.Form = "CACert"
  333.      CADoc.PickupID = "CACert"
  334.      CADoc.RequestType = "CA"
  335.      '
  336.      '  Copy over the relevant fields from the input document
  337.      CADoc.CommonName = doc.CommonName
  338.      CADoc.Org = doc.Organization
  339.      CADoc.OrgUnit = doc.OrganizationalUnit
  340.      CADoc.Locality = doc.Locality
  341.      CADoc.State = doc.StateProvince
  342.      CADoc.Country = doc.Country
  343.      '
  344.      ' Load the certificate from the text file
  345.      
  346.      cert$ = ""
  347.      
  348.      Open CertFile$ For Input As #1
  349.      Do While Not Eof(1)
  350.           Line Input #1, L$
  351.           If Left(L$, 1) <> "-" Then cert$ = cert$ + L$
  352.      Loop
  353.      Close #1
  354.      
  355.      CADoc.Certificate = cert$
  356.      '
  357.      Call CADoc.Save(True, False)
  358.      '
  359. End Function
  360. '++LotusScript Development Environment:2:1:GetString:1:8
  361. Function GetString(Byval StringIndex As Integer) As String
  362.      GetString = GetString2(StringIndex, "", "")
  363. End Function
  364. '++LotusScript Development Environment:2:1:GetString1:1:8
  365. Function GetString1(Byval StringIndex As Integer, arg1 As String) As String
  366.      GetString1 = GetString2(StringIndex, arg1, "")
  367. End Function
  368. '++LotusScript Development Environment:2:2:NukeIt:1:8
  369. Sub NukeIt( fn As String )
  370.      On Error Resume Next
  371.      Kill fn$
  372.      On Error Goto 0
  373. End Sub
  374. '++LotusScript Development Environment:2:2:UpdateCAKeyProfile:1:8
  375. Sub UpdateCAKeyProfile(doc As NotesDocument)
  376.      ' This takes a document (such as from Create CA Keyring) and updates the application's profile
  377.      ' based on it.  Right now it simply writes the key ring file name.
  378.      
  379.      Set db = doc.ParentDatabase
  380.      Dim prof As NotesDocument
  381.      Set prof = db.GetProfileDocument("CAProfile")
  382.      
  383.      prof.CAKeyFile = doc.KeyRingFileName(0)
  384.      
  385.      Call prof.Save(True, False)
  386. End Sub
  387. '++LotusScript Development Environment:2:2:SendNotification:1:8
  388. Sub SendNotification(form As String, doc As NotesDocument, subject As String, arg As String)
  389.      ' This is used to send email for notification.  It checks for the presence of
  390.      ' an email address as well as the SendMail flag.  If it can't send mail it quietly
  391.      ' doesn't.  
  392.      
  393.      Dim MailDoc As NotesDocument
  394.      Dim db As NotesDatabase
  395.      
  396.      If doc.EMail(0) <> "" And doc.SendEMail(0) = "1" Then
  397.           Set db = doc.ParentDatabase
  398.           Set MailDoc = New NotesDocument(db)
  399.           
  400.           Dim prof As NotesDocument
  401.           Set prof = db.GetProfileDocument("CAProfile")
  402.           
  403.           MailDoc.form = form
  404.           MailDoc.SendTo = doc.EMail(0)
  405.           MailDoc.Subject = subject
  406.           MailDoc.arg = arg
  407.           
  408.           ' should copy common fields over from doc as well...
  409.           
  410.           On Error Goto mailerror
  411.           Call MailDoc.Send(True)
  412.      End If
  413.      Exit Sub
  414.      
  415. mailerror:
  416.      Messagebox GetString1(err_NotifyMail, doc.Email(0))
  417.      Resume Next
  418. End Sub
  419. '++LotusScript Development Environment:2:1:SubmitCertificateRequest:1:8
  420. Function SubmitCertificateRequest(doc As NotesDocument) As Integer
  421.      ' This is used when a (server) certificate request is submitted from Notes.
  422.      ' It does some of the cracking that would normally be done by the url's
  423.      ' special processing if submitted from the web.
  424.      SubmitCertificateRequest = True ' assume success
  425.      
  426.      Dim certreq As Variant
  427.      
  428.      certreq = doc.Certificate
  429.      
  430.      CertView = ViewCert( certreq, "1" )
  431.      
  432.      If Isempty(CertView) Then
  433.           SubmitCertificateRequest = False ' bad request
  434.      Else
  435.           
  436.           doc.OrgUnit = ""
  437.           
  438.           Forall k In CertView
  439.                If Left$( k, 11)  = "SubjectOrg:" Then doc.Org = Right$(k, (Len(k)-12) )
  440.                If Left$( k, 18)  = "SubjectCommonName:" Then doc.CommonName = Right$(k, (Len(k)-19) )
  441.                If Left$( k, 15)  = "SubjectOrgUnit:" Then doc.OrgUnit = Right$(k, (Len(k)-16) ) 
  442.                If Left$( k, 12)  = "SubjectCity:" Then doc.Locality = Right$(k, (Len(k)-13) )
  443.                If Left$( k, 13)  = "SubjectState:" Then doc.State = Right$(k, (Len(k)-14) )
  444.                If Left$( k, 15)  = "SubjectCountry:" Then doc.Country = Right$(k, (Len(k)-16) )
  445.           End Forall
  446.           
  447.      ' Reformat the cert as it would come from the web
  448.           cert$ = ""
  449.           Forall k In certreq
  450.                If Left(k, 1) <> "-" Then cert$ = cert$ + k
  451.           End Forall
  452.           
  453.           doc.Certificate = cert$
  454.           
  455.           Call doc.Save(True, False)
  456.      End If
  457.      
  458. End Function
  459. '++LotusScript Development Environment:2:1:ReadFromFile:1:8
  460. Function ReadFromFile (fn As String) As Variant
  461.      
  462.      Dim FnLinklist List As String
  463.      
  464.      filenum% = Freefile()     
  465.      Open fn$ For Input As filenum%
  466.      i = 0
  467.      Do While Not Eof (filenum%)
  468.           Line Input #filenum%, FnLinklist(i)
  469.           i=i+1
  470.      Loop
  471.      Close filenum%
  472.      
  473.      AnotherHack = FnLinklist
  474.      
  475.      ReadFromFile = AnotherHack
  476.      
  477. End Function
  478. '++LotusScript Development Environment:2:1:ViewCert:1:8
  479. Function ViewCert (EncodedCertValue As Variant, PKCS As String) As Variant
  480.      
  481.      Dim CertValList As Variant
  482.      Dim buf As String * 500
  483.      
  484.      certfile$ = FixFileName("~vwcrt.tmp")
  485.      entryfile$ = FixFileName("~vwentr.tmp")
  486.      
  487.      Call WriteToFile( EncodedCertValue, certfile$ )
  488.      
  489.      CmdArgs = ""
  490.      CmdArgs = CmdArgs & "CertReqFile=" & certfile$ & ";"
  491.      CmdArgs = CmdArgs & "EntriesFile=" & entryfile$ & ";"
  492.      If PKCS = "1" Then CmdArgs = CmdArgs & "UsePKCS;"
  493.      
  494.      NukeIt( entryfile$ )
  495.      
  496.      rc%  = ProcessSecurityCmd("ViewCert",CmdArgs,Buf,500)
  497.      TrimBuf$ = Left$(Buf,Instr(Buf,Chr$(0))-1)
  498.      
  499.      NukeIt( certfile$ )
  500.      
  501.      If rc% = 0 Then 
  502.           
  503.           CertValList = ReadFromFile( entryfile$ )
  504.           
  505.           NukeIt( entryfile$ )
  506.           
  507.           ViewCert = CertValList
  508.           
  509.      Else
  510.           Messagebox TrimBuf$,48,"Error"
  511.      End If  
  512.      
  513. End Function
  514. '++LotusScript Development Environment:2:1:ResubmitRequest:1:8
  515. Function ResubmitRequest(doc As NotesDocument) As Integer
  516.      ResubmitRequest = True ' assume success
  517.      doc.Approved = "0"
  518.      Call doc.Save(True, False)
  519. End Function
  520. '++LotusScript Development Environment:2:2:WriteToFile:1:8
  521. Sub WriteToFile (FnLinkList As Variant, fn As String)
  522.      
  523.      ScriptBugHack = FnLinkList
  524.      
  525.      Call NukeIt( fn$ )
  526.      
  527.      filenum% = Freefile()
  528.      Open fn$ For Output As filenum%
  529.      Forall i In ScriptBugHack
  530.           Print #filenum%, i
  531.      End Forall
  532.      Close filenum%
  533.      
  534. End Sub
  535. '++LotusScript Development Environment:2:1:BreakItUp:1:8
  536. Function BreakItUp (LongCert As String) As Variant
  537.      Dim Broken List As String
  538.      Const linelen = 64 'this seems to be the length that we often return
  539.      count = 0
  540.      While 1
  541.           If Len( LongCert ) > linelen Then
  542.                Broken( count ) = Left$( LongCert, linelen )
  543.                LongCert = Right$( LongCert, ( Len( LongCert) - linelen ) )
  544.                count = count + 1
  545.           Else
  546.                Broken( count ) = LongCert
  547.                BreakItUp = Broken
  548.                Exit Function 'this might be superfluous, but who knows
  549.           End If
  550.      Wend
  551. End Function
  552. '++LotusScript Development Environment:2:2:CertToPickupCert:1:8
  553. Sub CertToPickupCert(doc As NotesDocument)
  554.      ' This assume you have a field Certificate which contains the cert as one long base64 
  555.      ' encoded line.  It loads up a multi-value text field called PickupCertificate with a copy 
  556.      ' of this broken into lines of manageable size with the beg and end tag lines.
  557.      '
  558.      Dim DisplayCert As Variant
  559.      DisplayCert = BreakItUp(doc.Certificate(0))
  560.      
  561.      Set itm = doc.ReplaceItemValue("PickupCertificate", "")
  562.      itm.AppendToTextList("-----BEGIN CERTIFICATE-----")
  563.      Forall k In DisplayCert
  564.           itm.AppendToTextList(k)
  565.      End Forall
  566.      itm.AppendToTextList("-----END CERTIFICATE-----")
  567. End Sub
  568. '++LotusScript Development Environment:2:1:LocalPath:1:8
  569. Function LocalPath( dbPath$ ) As String
  570.      '
  571.      ' This should be used to convert a db.FilePath to be relative to the notes data directory
  572.      ' when the db is opened locally.  We assume in db is either in or under the data
  573.      ' directory.  Because this is to help construct absolute urls, we replace all backslashes
  574.      ' with slashes.
  575.      '
  576.      Dim session As New NotesSession
  577.      dataDir$ = session.GetEnvironmentString("Directory",True)
  578.      l% = Len(dataDir$)
  579.      If Left(dbPath$, l%) = dataDir$ Then
  580.           dbPath$ = Right$(dbPath$, Len(dbPath$) - l% - 1)
  581.      End If
  582.      
  583.      i% = Instr(dbPath$, "\")
  584.      While i%
  585.           dbPath$ = Left(dbPath$, i%-1) + "/" + Right(dbPath$, Len(dbpath$)-i%)
  586.           i% = Instr(dbPath$, "\")
  587.      Wend
  588.      
  589.      LocalPath = dbPath$
  590. End Function
  591. O=Lotus Notes
  592. O=Lotus Notes
  593. PURSAFO
  594. |.:#U
  595. O=Lotus Notes
  596. CN=Lotus Notes Template Development/O=Lotus Notes
  597. PURSAFO
  598. Fde!f^^
  599. $ScriptLib
  600. $ScriptLib_O
  601. $TITLE
  602. $Flags
  603. $PublicAccess
  604. Keyring Administration
  605. HotspotRectangle4
  606. CASetup
  607.     1S4S6S
  608. HotspotRectangle5
  609. CertRequest
  610.     1S4S
  611. HotspotRectangle6E
  612. CertRegister
  613.     1S4S
  614. HotspotRectangle7
  615. defView
  616. Create CA Keyring
  617.     0S6S
  618. defView
  619.     0R4S
  620. HotspotRectangle8
  621. defView
  622. ServerAppSteps
  623.     0S6S
  624. defView
  625.     0R4S
  626. HotspotRectangle9~
  627. CAProfile
  628. HotspotRectangle13
  629. ViewKeyring
  630.     1S4S
  631. HotspotRectangle14
  632. defView
  633. CertRequestServerNotes
  634. defView
  635.     0R4S
  636. HotspotRectangle15
  637. CACertificate
  638. CACert
  639.     4S6S
  640. CACertificate
  641. CACert
  642.     0R4S6S
  643. GraphicButton12P
  644. X,X,X,X,
  645.     ,DX%DX%X%
  646. c`Zc`ZcY`Y
  647. .e_/V
  648. bzbzbzbzbczcz
  649. %X%X%X%
  650. zbzcz
  651. d`cd`Z`Y`YZ
  652. ,%X%X%
  653. rTzcbczczcz
  654. %X%X%
  655. c`cd`c`Y`Y`Y
  656. d    cdc`d`d`d
  657. e`e/e
  658. `dZ`d
  659. Z`e.Q9Ve_(;
  660. TrTrTr
  661. f`f`Y
  662. cdcdcZn
  663. 4?'n\
  664. brzSbSzS
  665. +I:3A
  666. ececdL
  667. ~z~z~
  668. DZDZ2D
  669. m_UVU
  670. 2    12121212D
  671. bzSTcT
  672.     z~z~z~}z}
  673. 9'8P8'I
  674. bz~z~z~
  675. SzTcT
  676. H$_$V
  677. 4{VeZ|e\
  678. H2H2@
  679. cD2c2D
  680. W ;rU
  681. GH2H2@
  682. {'PTUVrZUVeVeL'Z1r
  683. 7=A:A
  684. GH2H2H2@
  685. 2_2H2H2H
  686. H2H2H2@
  687. _HVHUH
  688. _2_H_
  689. U$UV_
  690. _GHG2#3
  691.     A#A#
  692. H2H2H
  693. !7!D#1
  694. 3#3#2G2G
  695. G2GH2H2H2H2@
  696. H2H2H2H@
  697. VHUGUH
  698. G2H2H2H@
  699. U    H$V$V.e`f
  700. '5eV_$_
  701. #12#2
  702. /V$H2
  703. 2H2H2H2@
  704. VHUHU
  705. LVe_e
  706. dc`e?
  707. H2H2H2H@
  708. 2H2H2
  709. Ve_e_.
  710. V_H_21
  711. H2H2H2H2H2G2H2H@
  712. A2A23G
  713. _    V_U_UHUGI
  714. OI;6IGUO9e_`?5`]
  715. m 6 XV
  716. V    U_U_H21%
  717. H2H2H2H2H2H2H2
  718. !A7A!
  719. IHU$V/_e
  720. _H2H2H2
  721. 3H_V_V
  722. V$HUIG
  723. VH_21%
  724. H2H2H2H
  725. !A7A!
  726. $VHUIG
  727. _e._.'
  728. HUHUGIG
  729. U    $V._/_V; 
  730. :A:A:3A3GH_e
  731. UHU$V
  732. HUGIGUGU$H_$
  733. "%<8%
  734. GU_/_V_V_VHUGIGUGU_$_$
  735. IG$V_e_V_$U$GUGIG
  736. :I:IGU_/.V._V_UHI
  737. _2_2H
  738. !1HV/e`
  739. _V_2_
  740. -:GIHV
  741. D2Z232:3
  742. I-IGU$e
  743. Z2D2D2DZDZTZ2Z2Z
  744. HV_HV_
  745. _2_2_2D2D2Z2
  746. /_V_2_
  747. %!%1@
  748. D2D2D
  749. 2ZD2D1
  750. %D!D%
  751. -:-IGU$V.
  752. 2D2D2ZD
  753. ZTD2D
  754. kdkdf`
  755. D2D2D2D2
  756. 2_21D1
  757. :-:-:
  758. H_$_$_
  759. D2D2D2
  760. dkd`d`Ze._
  761. _    D_1D1%1%1
  762. _$H2H
  763. :-:-I3
  764. $H_2H
  765. 2A2#1D1D1D2
  766. d    kdkdfd`Ze
  767. G3I:3
  768. 2D1D1
  769. _    Z_Z_ZF_ZD
  770. G3G:-:
  771. I:I-:
  772. %D_.`Y
  773. FZ_DZ_TZDZDZ
  774. 2#2#A
  775. Z2_TZ_D
  776. DZ2Z2Z2
  777. :-:-:-:
  778. 1D1D#
  779. 3:3:I:-
  780. :-:-:-
  781. 12_.2.Z`Ycdcd`c
  782. F_2DZD_2
  783. %,>,>,
  784. D!D!D!
  785. #1%!%
  786. D2DZD2DZDZDZDTZ
  787. J`Y`YZTZDZD_DZ
  788. cDc1D
  789. -:-:-:-:-:-
  790. :    3A3A2
  791. #D%!D%!
  792. 1%1%!
  793. .FZJZ
  794. ZDcDc
  795. >,>+>+>+>+
  796. -:-:-
  797. 1D%1%1%
  798. >,>,@
  799. +>+>+>=
  800. A3A3:3
  801. DX,r,>,>+>+=+>@
  802. =>+>@
  803. >+>+>=>+=+=+=@>=@>+>+>
  804. =+=+=@>=+>@>
  805. >=+=+=+=@=>@>
  806. =+=+=@=@
  807. A:A3A3A
  808. @=+=@>
  809. >@=@=
  810. A3A3A:
  811. :A:A:
  812. A    :A3:A:A
  813. A:A:A
  814. A:A:A
  815. :-:-:-:
  816. A:A:A
  817. JTJTF
  818. 2_Z_D1D
  819. DFRFJFTFD1
  820. YTYZF
  821. FZYZD
  822. 7%!%7%7%7%>7
  823. XTD%D
  824. Ze_Z_
  825. 7>7>%
  826. $_2H$H$H2H$_$_$_$2$
  827. e._Z_e.e@
  828. H_$_$_$H2$
  829. $V$H_$V_V_H$
  830. NX,>%D7%7!7!7
  831. !A7A#7%DXrS
  832. A7A7A!
  833. U$UHG2G
  834. XDXD%7#A
  835. 7!%DXrSXrTr
  836. $.$.$.
  837. #2HV$_H$_.e
  838. %1%1%
  839. XD!7!7!A!A!
  840. .$.$.$/.$./$.$.$
  841. .$.$/.
  842. $    /V$G
  843. 2HV_V
  844. 7A7A7
  845. !A!A7A
  846. >r%rXr^>@
  847. .$/$/.
  848. ././_.
  849. _V_e@
  850. !7!7A7A!
  851. .$.$/.$/$/./$/$./$/.
  852. #2$_V$V$_V@
  853. %D,D,D%
  854. /././
  855. D,D%X%,D
  856. 7A7!A7A
  857. ./$./$/$/./.
  858. ././.
  859. _/VH@
  860. D,XD,%
  861. %D#7!A7A7
  862. D,%D,%,
  863. ./$/$/././$
  864. X,D%DX,
  865. 2$.$.$/$./$
  866. _e`fYf
  867. Z`Yd@
  868. &mRPL$./$/./.
  869. r^*,X%
  870. D,%X,%D,
  871. ./$/$/.
  872. F9/./`./
  873. XJYjo@
  874. D,%X%D,
  875. Ecjo@    
  876. ;9/L;
  877. ./.YF
  878. ,FYzo@
  879. 5/9;+.F/R.K
  880. TYjo@
  881. ,%,%D
  882. /.];&
  883. X%X%,>
  884. %;O/.
  885. 5/9;R$RW
  886. K.FZ/
  887. &9L/.m
  888. %!2e`
  889. D%D%D
  890. $/././
  891. 1_e`dfd@    
  892. %D7D%D
  893. D%D%D%,D
  894. >@=>+=
  895. ./.0K/./
  896. Z`Yf`
  897. +>=@=@
  898. /$HGH
  899. fcYfZD
  900. %!1_e
  901. ;&'$.\
  902. ./9&$.\;
  903. !%!D%
  904. !%D%D%!D
  905. /&m.L;.;9/J.0
  906. !    1Z`cjdc`D
  907. _e`e_V@    
  908. Z.`e_/_@    
  909. ?*\5./&
  910. $HUGH
  911. e._$V/@    
  912. D    !D!D!D!D!
  913. *$F.L
  914. KF;5/&
  915. F/R/0Q&
  916. &9/.9
  917. &/&[\K
  918. &KW50
  919. 2.Z_.Z.2.e_@    
  920. #!%D,
  921. %1DZJ`ZFD_Z.Z2_._eV@    
  922. D1D,XNC^+^*C
  923. FEJF$/
  924. ./$/$/0
  925. /$./.
  926. /.$./$././$
  927. $/././
  928. _2Z_Z
  929. ././$
  930. ./$/./.
  931. /./$/
  932. Z.Z.Z
  933. F.FYZ
  934. Z._Z`@    
  935. ./.$/$/./$/./.
  936. oYoYj
  937. _Z2Z.d@    
  938. /$./$/././$/./
  939. ././$/
  940. Z.Y.FZ.
  941. edk@    
  942. ./$/././$/././.
  943. fdk@    
  944. 2GHU$/$.$./$/./$/././$/
  945. .Y.F.
  946. Y    KoYjKoYKo
  947. _Feckq@    
  948. 231G#
  949. ZY.F.
  950. KojKzKoKozoz
  951. qjcYZ
  952. Z.Z.Z
  953. jKjojozojozo
  954. ./.$/$/
  955. $.$.$
  956. Z.Z.Z
  957. zKjzKjzjzjzKjozozoz
  958. FZ.YZ
  959. YjKjYjYK
  960. #    1%!
  961. F.FZ.ZYZ
  962. jojoqp
  963. /$/$/
  964. YZ.F.YF
  965. .YZYZ
  966. JZYZYJY
  967. X    TZTFDXFTF
  968. Z.F.ZF
  969. F.ZF.ZE.
  970. XDXFTFDX
  971. 12H/$/
  972. .F.FY.
  973. zjzjzcbTXNFTS
  974. DXTZTDFTcj
  975. >%!1GIU$
  976. FZ.FY.FY.FY.F.
  977. ZFZFZ
  978. FTYbcj
  979. jzcbT+DCXSTD
  980. XTcjp
  981. .ZF.YF.
  982. TFYTYTYT
  983. +NTSX
  984. !1%1%
  985. _$/2/
  986. D.F.F.FY
  987. YF.FY
  988. JYTKTJYTEF
  989. XSXNX+STSX+Tbc
  990. z}ow@
  991. .D.ZF.FZ
  992. TrSXNTbc
  993. %12GIU
  994. +    XCXN,NXrT
  995. zy}yw}@
  996. .Z.ZF.
  997. DF.E.
  998. rbc}z
  999. Z!1!D
  1000. QBsrSrC^+=+NrN
  1001. NrSN^Nr
  1002. D.F.FD.
  1003. BQBQB
  1004. MQMQMB
  1005. B    )r*+=+^C^
  1006. ZF.D.F.F.D.
  1007. JKRQB
  1008. Q    MQMBMBMBM
  1009. GH2$H2$
  1010. +>+rN
  1011. .Z.EF.
  1012. MB)MB
  1013. h{^@=+r
  1014. brSvb
  1015. BQBQBQBQ
  1016. L()@>
  1017. N@>^N
  1018. BQBQBQ
  1019. +^C+@
  1020. N^=>=7=
  1021. %12#G
  1022. 9mP&9BQ
  1023. BMB()
  1024. +@>^r^+=
  1025. rC^@>
  1026. >rz~y@
  1027. QMQMB\
  1028. M(h)B{g^
  1029. ^r^+=
  1030. >%D1#
  1031. 2    1212
  1032.     5Q9;
  1033. 9MBMB
  1034. (MhQh|{u
  1035. vSsRr^
  1036. %121G12
  1037. ?QLB?Q?
  1038. )*){Q
  1039. ~bsr^@+
  1040. m4R;9RBRB9
  1041. vSr@+^
  1042. R9;B^
  1043. PR^RC^R^RSC+^Cb~}
  1044. v^g^rsr@
  1045. RFPE9;RF)F
  1046. MEM5;R&
  1047. C^SC^+
  1048. mX4'E'mXC9\JC\;
  1049. +CrC^
  1050. sr@rsSr@
  1051. SECESREF
  1052. RCNFCESRJR
  1053. CrC^+g^s
  1054. >%D1%#1D
  1055. EFNXFCEXECJRE
  1056. C    ESRECNCRE
  1057. KbRS^
  1058. sz~zS^g^szr^=
  1059. %1D#D1#D1#
  1060. CFECFXE
  1061. EXECJCF)OB
  1062. ^Sr^@gr
  1063. zsrg^r
  1064. >!D2D#
  1065. %    1%D%1D
  1066. &MJRSCEC
  1067. ^zSsg=
  1068. ,%1D%#1D
  1069. ECEFNF
  1070. LJCEC
  1071. RECNCRbQzvzvubu
  1072. sbRrC@^C
  1073. sSs@=
  1074. D(%DO
  1075. mMCB4
  1076.  \9E9ONP
  1077. m?M4?
  1078. 'M4)C'm
  1079. ;iv05];
  1080. F ;CB
  1081. \X)C&
  1082. LR(FR;\^&
  1083. N^SrS^+
  1084. ^rSsr@
  1085. RX;4&9
  1086. ^@g*^r^@
  1087. !D1D!
  1088. 9JEm4X
  1089. rsSs@=
  1090. E9;BEMR\
  1091. 4+XO(9
  1092. D    P4FX)
  1093.     9EC&4'45C
  1094. 5PCF\
  1095. 9M4(CRm
  1096. 4&9JC\
  1097. OMmtvim
  1098. miS'4
  1099. @rRr^
  1100. A!D,D
  1101. &CFXCFE
  1102. vzRC,
  1103. >^rbRrg
  1104. ^r^g@g
  1105. rsSr^@>
  1106. FNXFCJCXCSRECF
  1107. bRSN>7!7!7!
  1108. >@ruzsr^@
  1109. ^sbsN=>
  1110. FCFCFCXFCERLRCFNXFCEFN
  1111. FCRJCE
  1112. C    SJbQK|vQK
  1113. NFCECFECE
  1114. FNFCECFNXF
  1115. z    RS,7
  1116. DXFCFX
  1117. NCFECRC
  1118. FXNECECF
  1119. CFERJ
  1120. |vzQbS+
  1121. >@rsz
  1122. zvr^@g
  1123. CFCXN
  1124. FXNFCEFNXCRECECER
  1125. +rbz~z~Szr^@g^r^g
  1126. ^r^+g
  1127. FCECN
  1128. ECJCFCRJbvQ
  1129. bSr,>
  1130. A7A7!
  1131. X    EJCFCECRE
  1132. JRbvzQ
  1133. @g+^r*
  1134. NrN^,
  1135. FCEFN
  1136. XFCEF
  1137. EJbvQ
  1138. >=^Cr^
  1139. ^r^g@^
  1140. r    XN,XTScTX@
  1141. !A7#!7%,XC
  1142. NFCECECFCFCN
  1143. FCECN
  1144. CNFRJ
  1145. ERbvK
  1146. v    |v|vQKbN,
  1147. g^N^g@+NXrN,XTScT@
  1148. CFXFCRCF
  1149. 7!7!7!
  1150. ^rN^+^
  1151. !7!7!7
  1152. NFECFX
  1153. XNXNF
  1154. ECEXNXF
  1155. |vzuJ+
  1156. 7D,XC
  1157. XEFCFC
  1158. CRCEF
  1159.     FCFC
  1160. |vQvQ
  1161. =+rSr^g
  1162. XESRJRSR
  1163. QzQvQ
  1164. bRN,7
  1165. JRCFX
  1166. XFECFCS
  1167. QvzS,
  1168.     !7!7#7!7%
  1169. XECFXCS
  1170. Qv|vQ|vzKbC,7!7!7%
  1171. D,SJbs
  1172. CNCERbQ
  1173. %,NCRrbs
  1174. =NSzSzTX@
  1175. 7!7!7
  1176. %7!,S
  1177. RJSND
  1178. XFRbQc
  1179. T    rX>
  1180. D,XSJ
  1181. JSNDNFCFCX
  1182. b    N,7
  1183. >%TZcZT
  1184. !7!%!%7!
  1185. zKbS+
  1186. 7!7#!7!%,X
  1187. KvbrC,
  1188. dcZD@
  1189. %DXJSEN
  1190. DNFCFX
  1191. y}y}z}
  1192. !A!A!A7!7
  1193. DFEJR
  1194. zQvKzKQ
  1195. ~y}yz
  1196. vbzKv
  1197. %Tdcqp
  1198. %XFCX
  1199. DNFXD%
  1200. CESQ9{
  1201. JSNXNFSb
  1202. >+SrJSCN
  1203. 7>DZcqpjq@
  1204. czbJN
  1205. >%Zcq
  1206. !A#A7A
  1207. !    %DXFX%D
  1208. XSESXE
  1209. zbcr,>7
  1210. +bKjKz
  1211. !A!A!#A
  1212. 4MSJbc
  1213. z    ozozcbSX
  1214. SczKczczbX
  1215. D    X1%DXC
  1216. ENDFEF
  1217. m?9mS
  1218. >+SbKzbX
  1219. DZdcZY@
  1220. %!%!7
  1221. ,XSJECX
  1222. ECXNFCF
  1223. 9&9'E5\mL9 m&T
  1224. %>%,X
  1225. SczcJX
  1226. DTcZcT@
  1227. %    XEJECXNCJ
  1228. N    FEX
  1229. &FCRF8m
  1230. ,FTZY
  1231. ScTD%7
  1232. %FTZcTD@
  1233. %    !%XFSEFN
  1234. SzbS+
  1235. !    %,FJTX
  1236. zcjcz
  1237. XMOFX*59RO*
  1238. FEFNXFCEFX
  1239. FCJTF
  1240. FZTJZJYJ
  1241. (FJFX
  1242. tct?ZD
  1243. >+FXT,>
  1244. 1DFZFO
  1245. jpjpj
  1246. BP4*4
  1247. ;]ztW
  1248. tjy[yqi[q[
  1249. [zdi;
  1250. 9FRDBCJ5mjt
  1251. WtzmWc]5c
  1252. j";Wd
  1253. tQm[B>
  1254.     >+,TXDN+
  1255. icdjqW
  1256. ]jpmWcY|cd
  1257. */DX4
  1258. ;?5dji
  1259. ki[q]
  1260. ;n[fdi
  1261. [ikim
  1262. mtji[
  1263. .ZFZYZdY
  1264. dkdqjd
  1265. 6;FZYScS
  1266. `Ydcdcdj
  1267. G$.Z`
  1268. sbSr@
  1269. 3U.eYdt
  1270. jkdjd
  1271. &R;8G
  1272. 3H.edt
  1273. dqdcdcd
  1274. !4    -"
  1275. 'U.`t
  1276. q    dcqdcdcZc
  1277. sbsvbsvSsr@
  1278. $H2GH$H
  1279. ZcZcZTXD,XTS
  1280. 4"-IGQ
  1281. qdkqjd
  1282. D,+XTS
  1283. sbsub
  1284. 3I3IG
  1285. Q`];kn
  1286. ;[dkdqdqjdq
  1287. zsbsb
  1288. bususu
  1289. 3    -3I3I3UIU
  1290. sbsbs
  1291. 3-G3I3
  1292. I-8>"-
  1293. \    #"-
  1294. !81$.&
  1295. yny[]
  1296. ZcTcTc
  1297. svsbs^g
  1298. @=+NS@
  1299. "-"-%
  1300. dozdi
  1301. qdqdq
  1302. SbcTXN+XrSv
  1303. SRs@    
  1304. qcdqcdq
  1305. TbcbScXN+N
  1306. u    suvzsbvbv
  1307. 3I3-IGU
  1308. SXN+rXvb
  1309. ususu{
  1310. cqdcq
  1311. zbSXNgN
  1312. u{u{u{u{u|u
  1313. SrN@+rS
  1314. {|{|utu
  1315. zbSrNg^r
  1316. u{u{u{u
  1317. dcqcq
  1318. ScSbz
  1319. zbzSr^@^rS
  1320. qcqcqcZ
  1321. szSrNg+r
  1322. TbczS
  1323. bzszs
  1324. u{u{|{|u
  1325. I:-:-
  1326. #2Zdqcdq
  1327. ScTSczSz
  1328. b    zvszvzvr^
  1329. u{u{s
  1330. A#2Zc
  1331. zcbScb
  1332. vbzsvs
  1333. s{s{u
  1334. U$UG3
  1335. {s{s{s
  1336. TSczS
  1337. u{s{s
  1338. GUGU3
  1339. A#2_T
  1340. S~vszvz
  1341. !#212Z
  1342. g*^N@
  1343. D1DX>,
  1344. u{s{s{s
  1345. !#D2D1D
  1346. svszvsvs~vu~uv
  1347. g*^@=@
  1348. >NrS~z
  1349. G21GA
  1350. r{s^s^g
  1351. !D1D1!7
  1352. =@rzSv~s
  1353. u~vsu~
  1354. #!7!7!7#7!7#
  1355. g^rsv
  1356. !7!7!7A
  1357. =^sr~
  1358. g^rs{
  1359. g^srs
  1360. g*^r^s*
  1361. ^    sr*g
  1362. =>^,>@=
  1363. g,rX,=
  1364. >r7>7
  1365. =,r,>=
  1366. =,%X%r
  1367. =>r%r
  1368. =,^>=
  1369. r%>^=
  1370. %,=@>=
  1371. =^%>r%
  1372. =>,>,%r>g
  1373. @>^>^
  1374. =@>^>
  1375. ZZZcccsss
  1376. RJJRBB
  1377. ssJ99
  1378. ccB11{RRZ11k11c1)J1)
  1379. {sR1!
  1380. kJ9J)
  1381. J!{ZB
  1382. R)kB!
  1383. skcscR
  1384. sZRB1
  1385. k9sJ!
  1386. 9RkR{
  1387. BZ{1Jk
  1388. )RBJZ19Js
  1389. BR{JRk19R!)Bks
  1390. BBJccsZR
  1391. kZ{cRs
  1392. cRkcBskB{k1s
  1393. B1BcBck!c
  1394. R{kRcs!Zc
  1395. JZ)JZ
  1396. 1Zc!BZ
  1397. k{s)JsZcs)Bc)9
  1398. ZcsBJ
  1399. JRc)1
  1400. JPEG Image
  1401. *.JPG
  1402.  Image
  1403. *.JPG
  1404.  Image
  1405. *.JPG
  1406.  Image
  1407. *.JPG
  1408.  Image
  1409. *.JPG
  1410.  Image
  1411. *.JPG
  1412. XXXXXXXX
  1413.  Image
  1414. *.JPG
  1415.  Image
  1416. *.JPG
  1417.  Image
  1418. *.JPG
  1419.  Image
  1420. *.JPG
  1421.  Image
  1422. *.JPG
  1423. 22222222
  1424. ________ Image
  1425. *.JPG
  1426.  Image
  1427. *.JPG
  1428.  Image
  1429. *.JPG
  1430. >+>+>>>+ Image
  1431. *.JPG
  1432. ../.....
  1433.  Image
  1434. *.JPG
  1435.  Image
  1436. *.JPG
  1437.  Image
  1438. *.JPG
  1439.  Image
  1440. *.JPG
  1441.  Image
  1442. *.JPG
  1443. --------
  1444.  Image
  1445. *.JPG
  1446. O=Lotus Notes
  1447. O=Lotus Notes
  1448. PURSAFO
  1449. |.:#U
  1450. O=Lotus Notes
  1451. CN=Lotus Notes Template Development/O=Lotus Notes
  1452. PURSAFO
  1453. Fde!f^^
  1454. $ViewMapDataset
  1455. $ViewMapLayout
  1456. New Web Page,
  1457. WebPage
  1458.     0S0E
  1459. Categori_zeK
  1460. _Edit Document
  1461. Send Docu_ment
  1462. _Forward
  1463. _Move To Folder...
  1464. _Remove From FolderK
  1465. O=Lotus Notes
  1466. O=Lotus Notes
  1467. PURSAFO
  1468. |.:#U
  1469. O=Lotus Notes
  1470. CN=Lotus Notes Template Development/O=Lotus Notes
  1471. PURSAFO
  1472. Fde!f^^
  1473. $TITLE
  1474. $Index
  1475. $Formula
  1476. $FormulaClass
  1477. $ViewFormat
  1478. $Comment
  1479. $ACTIONS
  1480. [CAPrivlegedUser]Certificate Requests\Denied|CertificateRequestsDenied
  1481. $1CommonNameContactNameOrgEMail$Conflict$REF
  1482. CertRequest
  1483. Approved
  1484.     L1S5S7S8S9S10S
  1485. $1CommonNameContactName
  1486. CommonName
  1487. CommonName
  1488. ContactName
  1489. ContactName
  1490. EMail
  1491. EMail
  1492. $1Submitted
  1493. CommonNameNameContactNameContactOrgOrganizationEMailEMail&
  1494. CertRequestDenied
  1495. Denied Certificate RequestsY
  1496. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes################
  1497. [CAPrivlegedUser]System\Certificates And Requests| defView
  1498. $9FormApprovedContactNameCommonName$Conflict$REF
  1499. CertRequest
  1500. CertSubmitF
  1501.     L1S5S7S8S12S
  1502. $9ContactName
  1503. $9Created
  1504. FormFormApprovedApproved?ContactNameContact NameCommonNameCommon Name&
  1505. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes######################
  1506. [CAPrivlegedUser]System\All Documents|All.
  1507. Form$Conflict$REF
  1508. FormForm&
  1509. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes######################################################
  1510. WebPage[CertAppDesigner]
  1511. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  1512. ##########################################################
  1513. CertAdminHeaderCUA3
  1514. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  1515. ##########################################################
  1516. CN=James Cunningham/O=IrisCN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###################
  1517. Categori_zeK
  1518. _Edit Document
  1519. Send Docu_ment
  1520. _Forward
  1521. _Move To Folder...
  1522. _Remove From FolderK
  1523. View Certificate Requests Waiting for Approval6
  1524. CertificateRequests
  1525. View Approved Certificate Requests>
  1526. CertificateRequestsApproved
  1527. Main Menu
  1528. CASetup
  1529.     1S4S6S
  1530. O=Lotus Notes
  1531. O=Lotus Notes
  1532. PURSAFO
  1533. |.:#U
  1534. O=Lotus Notes
  1535. CN=Lotus Notes Template Development/O=Lotus Notes
  1536. PURSAFO
  1537. Fde!f^^
  1538. \64^.
  1539. $Readers
  1540. $TITLE
  1541. $Index
  1542. $Formula
  1543. $FormulaClass
  1544. $ViewFormat
  1545. $FormFormula
  1546. $Comment
  1547. $ACTIONS
  1548. Categori_zeK
  1549. _Edit Document
  1550. Send Docu_ment
  1551. _Forward
  1552. _Move To Folder...
  1553. _Remove From FolderK
  1554. O=Lotus Notes
  1555. O=Lotus Notes
  1556. PURSAFO
  1557. |.:#U
  1558. O=Lotus Notes
  1559. CN=Lotus Notes Template Development/O=Lotus Notes
  1560. PURSAFO
  1561. Fde!f^^
  1562. $Readers
  1563. $TITLE
  1564. $Index
  1565. $Formula
  1566. $FormulaClass
  1567. $ViewFormat
  1568. $Comment
  1569. $ACTIONS
  1570. O=Lotus Notes
  1571. O=Lotus Notes
  1572. PURSAFO
  1573. |.:#U
  1574. O=Lotus Notes
  1575. CN=Lotus Notes Template Development/O=Lotus Notes
  1576. PURSAFO
  1577. Fde!f^^
  1578. $Readers
  1579. $TITLE
  1580. $Index
  1581. $Formula
  1582. $FormulaClass
  1583. $ViewFormat
  1584. $Comment
  1585. [CAPrivlegedUser]Certificate Requests\ Waiting for Approval|CertificateRequests
  1586. $2CommonNameContactNameOrgEMail$Conflict$REF
  1587. CertRequest
  1588. Approved
  1589. Approved
  1590.     L1S5S7S8S10S11S12S13S14S15S1,
  1591. $2CommonNameEMail
  1592. CommonName
  1593. CommonName
  1594. ContactName
  1595. ContactName
  1596. EMail
  1597. EMail
  1598. $2Submitted
  1599. CommonNameNameContactNameContactOrgOrganizationEMailEMail&
  1600. CertRequestApproval
  1601. Certificate Requests awaiting approvalY
  1602. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################
  1603. [CAPrivlegedUser]Certificate Requests\Approved for Pickup|CertificateRequestsApproved
  1604. PickupID$3CommonNameContactNameOrgValidEndDate$Conflict$REF
  1605. CertRequest
  1606. Approved
  1607.     L1S5S7S8S9S10S
  1608. PickupID$3
  1609. PickupID
  1610. PickupID
  1611. CommonName
  1612. CommonName
  1613. ContactName
  1614. ContactName
  1615. ValidEndDate
  1616. ValidEndDate
  1617. PickupIDPickup ID$3Created
  1618. CommonNameNameContactNameContactOrgOrganizationValidEndDateExpires&
  1619. CertRequestApproved
  1620. Approved Certificate RequestsY
  1621. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#################
  1622. Create CA KeyringCreateKeyringWithSelfRoot[CAPrivlegedUser]CD
  1623. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##########################################
  1624. CN=James Cunningham/O=IrisCN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###########################
  1625. DialogSubmitAccept1CD
  1626. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##################
  1627. Categori_zeK
  1628. _Edit Document
  1629. Send Docu_ment
  1630. _Forward
  1631. _Move To Folder...
  1632. _Remove From FolderK
  1633. View Approved Certificate Requests>
  1634. CertificateRequestsApproved
  1635. View Denied Certificate Requests<
  1636. CertificateRequestsDenied
  1637. Main Menu
  1638. CASetup
  1639.     1S4S6S
  1640. O=Lotus Notes
  1641. O=Lotus Notes
  1642. PURSAFO
  1643. |.:#U
  1644. O=Lotus Notes
  1645. CN=Lotus Notes Template Development/O=Lotus Notes
  1646. PURSAFO
  1647. Fde!f^^
  1648. $Readers
  1649. $TITLE
  1650. $Index
  1651. $Formula
  1652. $FormulaClass
  1653. $ViewFormat
  1654. $FormFormula
  1655. $Comment
  1656. $ACTIONS
  1657. Categori_ze
  1658. _Edit Document
  1659. Send Docu_ment
  1660. _Forward
  1661. _Move To Folder...
  1662. _Remove From Folder
  1663. View Certificate Requests Waiting for Approval6
  1664. CertificateRequests
  1665. View Denied Certificate Requests<
  1666. CertificateRequestsDenied
  1667. Main Menu
  1668. CASetup
  1669.     1S4S6S
  1670. O=Lotus Notes
  1671. O=Lotus Notes
  1672. PURSAFO
  1673. |.:#U
  1674. O=Lotus Notes
  1675. CN=Lotus Notes Template Development/O=Lotus Notes
  1676. PURSAFO
  1677. Fde!f^^
  1678. CQz'>C
  1679. $Readers
  1680. $TITLE
  1681. $Index
  1682. $Formula
  1683. $FormulaClass
  1684. $ViewFormat
  1685. $FormFormula
  1686. $Comment
  1687. $ACTIONS
  1688. MailCertSubmitDenied
  1689. SubmitMethod
  1690.     1S2S
  1691. $HideMailHeader
  1692.     0S0E
  1693. SendTo}
  1694.     0S0E
  1695. SendTo^
  1696. No names found to send mail.{
  1697.     1S6S7S8S9S11S16S
  1698. SendToList of primary people to send memo.
  1699.     From:
  1700.     Subject:
  1701. Your Certificate Request
  1702. Subject
  1703.     Your client certificate has not been accepted due to the following reason:
  1704. O=Lotus Notes
  1705. O=Lotus Notes
  1706. PURSAFO
  1707. |.:#U
  1708. O=Lotus Notes
  1709. CN=Lotus Notes Template Development/O=Lotus Notes
  1710. PURSAFO
  1711. Fde!f^^
  1712. $TITLE
  1713. $Info
  1714. $$ScriptName
  1715. $Body
  1716. Pickup a Certificate
  1717. &Arial
  1718.  WebCertPickup
  1719. Pick Up Signed Certificate
  1720.     When you certificate has been signed by the Certificate Authority and is ready for pickup, you will usually receive an e-mail containing the URL where you can pick up the certificate.  If you do not receive an e-mail, you can use this form to pick up your certificate by providing the Pickup ID in the field below.  Contact your Certificate Authority to obtain the Pickup ID.
  1721.     Enter the certificate Pickup ID below:
  1722.     Pickup ID:
  1723. size = 20
  1724. PickupID
  1725. Please supply a Pickup ID.  You should have received one via email or from your Certificate Authority
  1726.     3S4S6S11SPickupID[<SIZE=8 MAXLENGTH=8>]
  1727.     Pick Up Certificate
  1728. [CertAppDesigner]
  1729.     1S6S7S
  1730.     Hidden fields:
  1731. SaveOptions
  1732. /Pickup/"
  1733. PickupID"
  1734. ?OpenDocument]"
  1735.     1S2S6S9S11S12S13S14S
  1736. $$Return
  1737. O=Lotus Notes
  1738. O=Lotus Notes
  1739. PURSAFO
  1740. |.:#U
  1741. O=Lotus Notes
  1742. CN=Lotus Notes Template Development/O=Lotus Notes
  1743. PURSAFO
  1744. Fde!f^^
  1745. h9Z>[OQH
  1746. $TITLE
  1747. $Info
  1748. $WindowTitle
  1749. $$Script_O
  1750. $$ScriptName
  1751. $Body
  1752. WebPage
  1753. --------------------------------------------------------------------------------------------------
  1754. Hidden fields:  
  1755. The Page Title below doesn't appear in a browser.  Use it to identify the
  1756. page in the Web Pages view, and for the Document name in URLs.
  1757. Page Title 
  1758. PrivateTitle
  1759. ---------------------------------------------------------------------------------------------------
  1760. O=Lotus Notes
  1761. O=Lotus Notes
  1762. PURSAFO
  1763. |.:#U
  1764. O=Lotus Notes
  1765. CN=Lotus Notes Template Development/O=Lotus Notes
  1766. PURSAFO
  1767. Fde!f^^
  1768. $TITLE
  1769. $FormUsers
  1770. $Info
  1771. $$ScriptName
  1772. $Body
  1773. CertAdminHeader
  1774. [CertAppDesigner]
  1775.     1S6S7S
  1776. ------------------------------------------------------------------------------------------------------------
  1777. Hidden:
  1778. Common Header for Certificate Admin Pages.
  1779. The fields in this section are visible only when editing,
  1780. and user has the "[CertAppDesigner]" role.
  1781. Category:    
  1782. Categories
  1783. Create Keyrings & CertificatesQuickstart - for Trying Out SSLManage Keyrings
  1784. Page Title:    
  1785. PrivateTitle
  1786. Doc Order:    
  1787. DocOrder
  1788. -------------------------------------------------------------------------------------------------------------
  1789. O=Lotus Notes
  1790. O=Lotus Notes
  1791. PURSAFO
  1792. |.:#U
  1793. O=Lotus Notes
  1794. CN=Lotus Notes Template Development/O=Lotus Notes
  1795. PURSAFO
  1796. Fde!f^^
  1797. z0$Q<
  1798. :jU    ]
  1799. $TITLE
  1800. $Info
  1801. $$Script_O
  1802. $$ScriptName
  1803. $Body
  1804. &Arial
  1805. MkX"V[/m
  1806.     Web users launch to this doclink: 
  1807. Certificate Authority
  1808. CN=orr/O=NHL
  1809. ![y[w
  1810. !!!)))111999BBBJJJRRRZZZccckkksss{{{
  1811. sRkZ9
  1812. sJkZ1
  1813. BkZ)cR!
  1814. s9sc1
  1815. {9{k1
  1816. s{sRskJ
  1817. {RkcB
  1818. cZR1cZ1
  1819. 9sc!91
  1820. {J{sB
  1821. {Bsk9cZ)
  1822. J{s9sk1kc)
  1823. sssRkkJccBRR1
  1824. 7.RIP
  1825. Word for Window
  1826. GIF Image
  1827.     Welcome to the Domino Certificate Authority application. The Certificate Authority application is the first step towards securing your organization's intranet using SSL 3.0. You must use Domino and Notes Releases 4.6 to use this application.
  1828.     Before you begin, make sure you understand Internet and intranet security issues. For more information, see 
  1829.     Getting Started with Domino
  1830.      or online administration Help (HELPADMN.NSF).
  1831.     The Certificate Authority application (CERTCA.NSF) lets you establish a Certification Authority (CA) within your organization. As an internal CA, you are responsible for handling certificate requests from Domino server administrators within your organization and adding client certificates to the Public Address Book. 
  1832.     Which tasks can I perform if I'm a Certification Authority?
  1833.     Use the Certificate Authority application to perform the following Certification Authority tasks:
  1834.     -Create the CA certificate and key ring file, which holds your CA certificate.
  1835.     -Sign server certificates when server administrators request them so clients and servers can communicate.
  1836.     -Add client certificates to the Public Address Book to set up client authentication on a server.
  1837.     -View certificate information in the key ring file.
  1838.     Which tasks can I perform if I'm a Server administrator or client?
  1839.     Server administrators and clients use their browsers to access the Certificate Authority application. They use the application to do the following:
  1840.     -Submit requests for server certificates.
  1841.     -Pick up server certificates.
  1842.     -Submit a client certificate to add to the server's Public Address Book for client authentication.
  1843.     For information on using the Certificate Authority template, see the Using document 
  1844. Certificate Authority
  1845. CN=orr/O=NHL
  1846. O=Lotus Notes
  1847. O=Lotus Notes
  1848. PURSAFO
  1849. |.:#U
  1850. O=Lotus Notes
  1851. CN=Lotus Notes Template Development/O=Lotus Notes
  1852. PURSAFO
  1853. Fde!f^^
  1854. loH%|
  1855. $Info
  1856. $Body
  1857. [CAPrivlegedUser]Submitted Certificates\ Waiting for Approval|SubmittedCertificates
  1858. $2CommonNameContactNameOrgEMail$Conflict$REF
  1859. CertSubmitF
  1860. Approved
  1861. Approved
  1862.     L6S8S9S10S11S13S14S16S17S18S19S20S21S1*
  1863. $2CommonNameOrg
  1864. CommonName
  1865. CommonName
  1866. ContactName
  1867. ContactName
  1868. EMail
  1869. EMail
  1870. $2Submitted
  1871. CommonNameNameContactNameContactOrgOrganizationEMailEMail&
  1872. CertSubmitApproval
  1873. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##########################################
  1874. [CAPrivlegedUser]Submitted Certificates\Rejected|SubmittedCertificatesRejected
  1875. $2CommonNameContactNameOrgEMail$Conflict$REF
  1876. CertSubmitF
  1877. Approved
  1878.     L1S5S7S8S9S10S
  1879. $2CommonNameContactNameOrgEMail
  1880. CommonName
  1881. CommonName
  1882. ContactName
  1883. ContactName
  1884. EMail
  1885. EMail
  1886. $2Submitted
  1887. CommonNameNameContactNameContactOrgOrganizationEMailEMail&
  1888. CertSubmitRejected
  1889. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###############
  1890. WebPageHTMLOnly[CertAppDesigner]
  1891. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#######################################################
  1892. [CAPrivlegedUser]System\Cleanup|Cleanupr
  1893. Form$Conflict$REF
  1894. WebPage
  1895. Frame
  1896.     L1S2S7S9S10S14S1
  1897. FormForm&
  1898. Docs to delete when making templateY
  1899. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#################
  1900. ##########################################################
  1901. ##########################################################
  1902. Categori_zeK
  1903. _Edit Document
  1904. Send Docu_ment
  1905. _Forward
  1906. _Move To Folder...
  1907. _Remove From FolderK
  1908. View Accepted Certificates@
  1909. SubmittedCertificatesAccepted
  1910. View Rejected Certificates@
  1911. SubmittedCertificatesRejected
  1912. Main Menu
  1913. CASetup
  1914.     1S4S6S
  1915. O=Lotus Notes
  1916. O=Lotus Notes
  1917. PURSAFO
  1918. |.:#U
  1919. O=Lotus Notes
  1920. CN=Lotus Notes Template Development/O=Lotus Notes
  1921. PURSAFO
  1922. Fde!f^^
  1923. $Readers
  1924. $TITLE
  1925. $Index
  1926. $Formula
  1927. $FormulaClass
  1928. $ViewFormat
  1929. $FormFormula
  1930. $Comment
  1931. $ACTIONS
  1932. Categori_zeK
  1933. _Edit Document
  1934. Send Docu_ment
  1935. _Forward
  1936. _Move To Folder...
  1937. _Remove From FolderK
  1938. View Certificate Registration Requests8
  1939. SubmittedCertificates
  1940. View Accepted Certificate Registration RequestsK@
  1941. SubmittedCertificatesAccepted
  1942. Main Menu
  1943. CASetup
  1944.     1S4S6S
  1945. O=Lotus Notes
  1946. O=Lotus Notes
  1947. PURSAFO
  1948. |.:#U
  1949. O=Lotus Notes
  1950. CN=Lotus Notes Template Development/O=Lotus Notes
  1951. PURSAFO
  1952. Fde!f^^
  1953. ,-byl
  1954. $Readers
  1955. $TITLE
  1956. $Index
  1957. $Formula
  1958. $FormulaClass
  1959. $ViewFormat
  1960. $FormFormula
  1961. $Comment
  1962. $ACTIONS
  1963. Create Certificate Authority Keyring
  1964. '++LotusScript Development Environment:2:5:(Options):0:74
  1965. Option Public
  1966. Use "CertLib"
  1967. '++LotusScript Development Environment:2:5:(Forward):0:1
  1968. '++LotusScript Development Environment:2:5:(Declarations):0:10
  1969.  CreateKeyringWithSelfRoot'++LotusScript Development Environment:2:5:(Options):0:74
  1970. Use "CertLib"
  1971. '++LotusScript Development Environment:2:5:(Forward):0:1
  1972. '++LotusScript Development Environment:2:5:(Declarations):0:10
  1973. '++LotusScript Development Environment:2:2:BindEvents:1:129
  1974. Private Sub BindEvents(Byval Objectname_ As String)
  1975.      Static Source As NOTESUIDOCUMENT
  1976.      Set Source = Bind(Objectname_)
  1977. End Sub
  1978. SaveOptions
  1979. Create Certificate Authority Key Ring
  1980.     This form lets you create the Certificate Authority key ring.
  1981.     Key Ring Information
  1982.     Quick Help
  1983.     Key Ring File Name
  1984. CAKey.kyr
  1985. KeyRingFileName
  1986. Key ring file name is required{
  1987.     3S4S
  1988. KeyringFileNameName for the file that stores Certificate Authority keys and certificates. Include path if file is not in the data directory.
  1989.     Key Ring Password
  1990. PasswordPassword for the key ring file (at least 6 alphanumeric characters recommended)
  1991.     Specify the file name and password for the key ring.
  1992.     Distinguished Name
  1993.     Common Name:
  1994. CommonName
  1995. Common Name is required
  1996.     3S4S
  1997. CommonNameDescriptive name for the CA (e.g. Acme CA)
  1998.     Organization
  1999. Organization
  2000. Organization is required{
  2001.     3S4S
  2002. OrganizationName of the organization, usually a company name (e.g. Acme)
  2003.     Organizational Unit
  2004. OrganizationalUnit(Optional) Name of the division or department (e.g. Marketing)
  2005.      (optional)
  2006.     City or Locality
  2007. Locality(Optional) City or town where the CA resides (e.g. Winchester)
  2008.      (optional)
  2009.     State or Province
  2010. StateProvince
  2011. State or province value must be at least three characters
  2012.     6S7S
  2013. StateProvinceAt least 3 characters that represent the state or province (e.g. Massachusetts, not MA) 
  2014.      (no abbreviations)
  2015.     Country
  2016. Country
  2017. Country code must be exactly two characters
  2018.     6S7S
  2019. CountryTwo-character representation for the country (e.g. US) (two character country code)
  2020.      (two character country code)
  2021.     The Distinguished Name provides your unique identity as a Certificate Authority.  This is the information that will display as the "Issuer" in certificates that you sign.
  2022. '++LotusScript Development Environment:2:5:(Options):0:74
  2023. Use "CertLib"
  2024. '++LotusScript Development Environment:2:5:(Forward):0:1
  2025. Declare Sub Click(Source As Button) 
  2026. Declare Function FixFileName( fn As String ) As String
  2027. '++LotusScript Development Environment:2:5:(Declarations):0:10
  2028. Declare Function ProcessSecurityCmd Lib "_dmsecadm" (Byval cmdName As String,_
  2029. Byval cmdArgs As String, Byval OutBuf As String, Byval szOutBuf As Integer) As Integer
  2030. '++LotusScript Development Environment:2:2:BindEvents:1:129
  2031. Private Sub BindEvents(Byval Objectname_ As String)
  2032.      Static Source As BUTTON
  2033.      Set Source = Bind(Objectname_)
  2034.      On Event Click From Source Call Click
  2035. End Sub
  2036. '++LotusScript Development Environment:2:2:Click:1:12
  2037. Sub Click(Source As Button) 
  2038.      Dim wsp As New notesuiworkspace
  2039.      Dim uidoc As notesuidocument
  2040.      Set uidoc = wsp.CurrentDocument
  2041.      Dim doc As notesdocument
  2042.      Dim Buf As String * 1024   ' maxMsgBufLen%
  2043.      Dim CmdArgs As String
  2044.      Dim item As NotesItem
  2045.      Set doc = uidoc.Document
  2046.      
  2047.      ' Look up to see if we already have a cakey file defined in the profile.  If so, they've probably done 
  2048.      ' this before, so give them a scary warning so they don't shoot themselves in the foot.
  2049.      
  2050.      Dim db As NotesDatabase
  2051.      Set db = doc.ParentDatabase
  2052.      Dim prof As NotesDocument
  2053.      Set prof = db.GetProfileDocument("CAProfile")
  2054.      CAKeyFile$ = prof.CAKeyFile(0)
  2055.      
  2056.      If CAKeyFile$ <> "" Then
  2057.           flag% = wsp.DialogBox( "DlgAlreadyHaveCAKey" , True , True, False, True, True, False, FixFileName(CAKeyFile$) )
  2058.           If flag% = False Then
  2059.                Messagebox GetString(ids_Cancel) 
  2060.                Call uidoc.Close
  2061.                Exit Sub
  2062.           End If
  2063.      End If
  2064.      
  2065.      Call uidoc.Save
  2066.      
  2067.      ' Get input data
  2068.      CommonName$ = doc.CommonName(0)
  2069.      OrganizationalUnit$ = doc.OrganizationalUnit(0)
  2070.      Organization$ = doc.Organization(0)
  2071.      State$ = doc.StateProvince(0)
  2072.      Locality$ = doc.Locality(0)
  2073.      Country$ = doc.Country(0)
  2074.      KeyRingFileName$ = FixFileName(doc.KeyRingFileName(0))
  2075.      doc.KeyRingFileName = KeyRingFileName$
  2076.      KeyName$ = doc.KeyName(0)
  2077.      Password$ = doc.Password(0)
  2078.      ValidDays$ = Str(doc.ValidDays(0))
  2079.      CertFile$ = FixFileName("~catmp.tmp")
  2080.      
  2081.      ' Build executable parameter line
  2082.      CmdArgs = ""
  2083.      If Organization$ > "" Then CmdArgs = CmdArgs & "Org=" & Organization$ & ";"
  2084.      If OrganizationalUnit$ > "" Then CmdArgs = CmdArgs & "OrgUnit=" & OrganizationalUnit$ & ";"
  2085.      If CommonName$ > "" Then CmdArgs = CmdArgs & "CommonName=" & CommonName$ & ";"
  2086.      If Country$ > "" Then CmdArgs = CmdArgs & "Country=" & Country$ & ";"
  2087.      If State$ > "" Then CmdArgs = CmdArgs & "State=" & State$ & ";"
  2088.      If Locality$ > "" Then CmdArgs = CmdArgs & "City=" & Locality$ & ";"
  2089.      If KeyRingFileName$ > "" Then CmdArgs = CmdArgs & "KeyFile=" & FixFileName(KeyRingFileName$) & ";"
  2090.      CmdArgs = CmdArgs & "KeyName=CAKeyPair;"  ' this is what we always call it
  2091.      If Password$ > "" Then CmdArgs = CmdArgs & "Password=" & Password$ & ";"
  2092.      If ValidDays$ > "" Then CmdArgs = CmdArgs & "ValidDays=" & ValidDays$ & ";"
  2093.      CmdArgs = CmdArgs & "CertReqFile=" & CertFile$ & ";"
  2094.      CmdArgs = CmdArgs & "UsePKCS;"
  2095.      
  2096.      Call NukeIt(CertFile$) ' start with no leftovers
  2097.      
  2098.      If dbg Then Messagebox CmdArgs
  2099.      rc%  = ProcessSecurityCmd("CreateSelfSignedRoot",CmdArgs,Buf,maxMsgBufLen%)
  2100.      TrimBuf$ = Left$(Buf,Instr(Buf,Chr$(0))-1)  ' strip nulls
  2101.      
  2102.      If rc% = 0 Then 
  2103.           ' put up the confirmation dialog
  2104.           flag% = wsp.DialogBox("DlgConfirmCreateSelfRoot",True,True,True,False,False,False,TrimBuf$)
  2105.           ' Load up the CACert document with the cert we got.
  2106.           success = UpdateCACert(doc, CertFile$)
  2107.           Call NukeIt(CertFile$)     ' don't leave this lying around
  2108.           ' Remember some things in our profile
  2109.           If success Then Call UpdateCAKeyProfile(doc) 
  2110.           Call uidoc.Close ' get out
  2111.      Else
  2112.           Messagebox TrimBuf$,48, GetString(ids_Error)
  2113.      End If          
  2114.      
  2115. End Sub
  2116. '++LotusScript Development Environment:2:1:FixFileName:1:8
  2117. Function FixFileName( fn As String ) As String
  2118.      If (fn Like "*[:/\]*") Then
  2119.           FixFileName = fn
  2120.      Else
  2121.           Dim session As New NotesSession
  2122.           If IsDefined("UNIX") Then  
  2123.                FixFileName = session.GetEnvironmentString( "Directory", True ) & "/" & fn
  2124.           Else
  2125.                FixFileName = session.GetEnvironmentString( "Directory", True ) & "\" & fn
  2126.           End If
  2127.      End If
  2128. End Function
  2129. d    d    (
  2130. ^H    K`
  2131. ^d    K`
  2132. }t    #8!
  2133. New Button
  2134. Need a newer version of Notes to execute this button.
  2135.     0S0E
  2136.     Create Certificate Authority Key Ring 
  2137. [CertAppDesigner]
  2138.     1S6S7S
  2139.     Hidden fields:
  2140.     Valid days: 
  2141.     0S0E
  2142. ValidDays
  2143.      (should be a long time)
  2144. O=Lotus Notes
  2145. O=Lotus Notes
  2146. PURSAFO
  2147. |.:#U
  2148. O=Lotus Notes
  2149. CN=Lotus Notes Template Development/O=Lotus Notes
  2150. PURSAFO
  2151. Fde!f^^
  2152. $TITLE
  2153. $FormUsers
  2154. $Info
  2155. $WindowTitle
  2156. $Script
  2157. $$Script_O
  2158. $$ScriptName
  2159. $$FormScript
  2160. $$$FormScript_O
  2161. ValidDays
  2162. $Body
  2163. &Arial
  2164. !!!)))111999BBBJJJRRRZZZccckkksss{{{
  2165. BkZ)cR!
  2166. s9sc1
  2167. {9{k1
  2168. 9sc!B9
  2169. {J{sB
  2170. {Bsk9kc1cZ)
  2171. J{s9sk1kc)ZR
  2172. c{s1kc!
  2173. _IGIF
  2174. 4W49F/V0
  2175. 49F/V0
  2176.     When accessing the Certificate Authority application, make sure you have a network connection to the server and are working at the server machine. The Certificate Authority application must access files on the server hard drive over the network.
  2177.     The Certificate Authority application contains the following navigator options:
  2178.     Certificate Authority Configuration
  2179.     Use this option to set up a Certification Authority.
  2180.     Create Certificate Authority Key Ring & Certificate
  2181.     - Creates the CA's certificate and stores it in a password protected binary file.
  2182.     2. Create Server Key Ring & Certificate
  2183.      - Since the CA server must be set up for server authentication using SSL, you need to create a server certificate and store it in a password protected text file.
  2184.     3. Configure Certificate Authority Profile
  2185.      - Stores settings that the application needs to function properly.
  2186.     4. Submit Server Request
  2187.     Submits the server certificate request for the CA server.
  2188.     5. Pick Up Certification Authority Certificate
  2189.     Merges the CA trusted root into the server key ring file.
  2190.     Certificate Requests
  2191.     Sign submitted server certificates or deny requests for server certificates.
  2192.     Certificate Registration
  2193.     Add submitted client certificates to the Public Address Book or deny requests to add client certificates.
  2194.     View Certificate Authority Key Ring
  2195.     View information in the CA certificate and change the password for the key ring file.
  2196. O=Lotus Notes
  2197. O=Lotus Notes
  2198. PURSAFO
  2199. |.:#U
  2200. O=Lotus Notes
  2201. CN=Lotus Notes Template Development/O=Lotus Notes
  2202. PURSAFO
  2203. Fde!f^^
  2204. ?Sr"vc
  2205. g`>}mo
  2206. $Info
  2207. $Body
  2208. WebPageHTMLOnly
  2209. -------------------------------------------------------------------------------------------------
  2210. Hidden fields: 
  2211. The Page Title below doesn't appear in a browser.  Use it to identify the
  2212. page in the Web Pages view, and for the Document name in URLs.
  2213. Page Title 
  2214. PrivateTitle
  2215. This is an HTML-only page.
  2216. ---------------------------------------------------------------------------------------------------
  2217. O=Lotus Notes
  2218. O=Lotus Notes
  2219. PURSAFO
  2220. |.:#U
  2221. O=Lotus Notes
  2222. CN=Lotus Notes Template Development/O=Lotus Notes
  2223. PURSAFO
  2224. Fde!f^^
  2225. &'UGd
  2226. $TITLE
  2227. $FormUsers
  2228. $Info
  2229. $$ScriptName
  2230. $Body
  2231. DialogSubmitAccept
  2232.     A request has been entered in the Administration Process queue to add this certificate to the user's Person document in the Public Address Book.
  2233. Approval Submitted
  2234. O=Lotus Notes
  2235. O=Lotus Notes
  2236. PURSAFO
  2237. |.:#U
  2238. O=Lotus Notes
  2239. CN=Lotus Notes Template Development/O=Lotus Notes
  2240. PURSAFO
  2241. Fde!f^^
  2242. $TITLE
  2243. $NoBackgroundOverride
  2244. $Info
  2245. $$ScriptName
  2246. $Body
  2247. [CAPrivlegedUser]CA Certificate|CACertificate
  2248. PickupID$1RequestTypeCommonNameOrgEMail$Conflict$REF
  2249. CACert
  2250.     L1S2S3S1
  2251. PickupID$1
  2252. PickupID$1Created
  2253. RequestTypeTypeCommonNameNameOrgOrganizationEMailEMail&
  2254. CACert
  2255. Certificate Authority Certificate for PickupY
  2256. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#################
  2257. CertRequestG3
  2258. CN=James Cunningham/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##########################
  2259. CertRegisterG3
  2260. CN=James Cunningham/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################
  2261. ViewKeyringG3
  2262. CN=James Cunningham/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##################################
  2263. WebPageFrameTop[CertAppDesigner]H
  2264. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################################
  2265. Web Submit OutputOutputSubmitCD
  2266. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes################
  2267. Web Cert SubmitCertSubmitCD
  2268. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes############
  2269. Submitted Certificate TranslationCertSubmitTranslationDC
  2270. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#######################################
  2271. Cert Request TranslationCertRequestTranslationDC
  2272. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###############################
  2273. ##########################################################
  2274. Categori_zeK
  2275. _Edit Document
  2276. Send Docu_ment
  2277. _Forward
  2278. _Move To Folder...
  2279. _Remove From FolderK
  2280. Main Menu
  2281. CASetup
  2282.     1S4S6S
  2283. O=Lotus Notes
  2284. O=Lotus Notes
  2285. PURSAFO
  2286. |.:#U
  2287. O=Lotus Notes
  2288. CN=Lotus Notes Template Development/O=Lotus Notes
  2289. PURSAFO
  2290. Fde!f^^
  2291. $Readers
  2292. $TITLE
  2293. $Index
  2294. $Formula
  2295. $FormulaClass
  2296. $ViewFormat
  2297. $FormFormula
  2298. $Comment
  2299. $ACTIONS
  2300. Certificate Requests\ Waiting for Approval
  2301. HotspotRectangle1
  2302. CASetup
  2303.     1S4S6S
  2304. HotspotRectangle2
  2305. CertRequest
  2306.     1S4S
  2307. HotspotRectangle4
  2308. CertRegister
  2309.     1S4S
  2310. HotspotRectangle5
  2311. ViewKeyring
  2312.     1S4S
  2313. GraphicButton4
  2314. X,X,X,X,
  2315. X    ,DX%DX%X%
  2316. c`Zc`ZcY`Y
  2317. .e_/V
  2318. bzbzbzbzbczcz
  2319. %X%X%X%
  2320. zbzcz
  2321. d`cd`Z`Y`YZ
  2322. ,%X%X%
  2323. rTzcbczczcz
  2324. %X%X%
  2325. c`cd`c`Y`Y`Y
  2326. d    cdc`d`d`d
  2327. e`e/e
  2328. `dZ`d
  2329. Z`e.Q9Ve_(;
  2330. TrTrTr
  2331. f`f`Y
  2332. cdcdcZn
  2333. 4?'n\
  2334. brzSbSzS
  2335. +I:3A
  2336. #1212
  2337. ececdL
  2338. ~z~z~
  2339. DZDZ2D
  2340. m_UVU
  2341. bzSTcT
  2342. 1D    z~z~z~}z}
  2343. 9'8P8'I
  2344. bz~z~z~
  2345. SzTcT
  2346. H$_$V
  2347. 4{VeZ|e\
  2348. 1212#
  2349. cD2c2D
  2350. W ;rU
  2351. GH2H2
  2352. {'PTUVrZUVeVeL'Z1r
  2353. 7=A:A
  2354. GH2H2H2
  2355. 2_2H2H2H
  2356. H2H2H2
  2357. _HVHUH
  2358. _2_H_
  2359. U$UV_
  2360. _GHG2#3
  2361.     A#A#
  2362. H2H2_
  2363. !7!D#1
  2364. 3#3#2G2G
  2365. H2GH2H2H2G2
  2366. H2H2H2H
  2367. VHUGUH
  2368. H2H2H2H
  2369. U    H$V$V.e`f
  2370. '5eV_$_
  2371. #12#2
  2372. /V$H2
  2373. 2HG2H2H2H2
  2374. VHUHU
  2375. LVe_e
  2376. dc`e?
  2377. 2H2H2
  2378. Ve_e_.
  2379. V_H_21
  2380. H2H2H2H2H2G2H2H
  2381. A2A23G
  2382. _    V_U_UHUGI
  2383. OI;6IGUO9e_`?5`]
  2384. m 6 XV
  2385. V    U_U_H21%
  2386. H2H2H2H2H2H2H2
  2387. !A7A!
  2388. IHU$V/_e
  2389. _H2H2H2
  2390. 3H_V_V
  2391. V$HUIG
  2392. VH_21%
  2393. H2H2H2H
  2394. !A7A!
  2395. $VHUIG
  2396. _e._.'
  2397. HUHUGIG
  2398. U    $V._/_V; 
  2399. :A:A:3A3GH_e
  2400. UHU$V
  2401. HUGIGUGU$H_$
  2402. "%<8%
  2403. GU_/_V_V_VHUGIGUGU_$_$
  2404. IG$V_e_V_$U$GUGIG
  2405. :I:IGU_/.V._V_UHI
  2406. _2_2H
  2407. !1HV/e`
  2408. _V_2_
  2409. -:GIHV
  2410. D2Z232:3
  2411. I-IGU$e
  2412. Z2D2D2DZDZTZ2Z2Z
  2413. HV_HV_
  2414. _2_2_2D2D2Z2
  2415. /_V_2_
  2416. D2D2D
  2417. 2ZD2D1
  2418. %D!D%
  2419. -:-IGU$V.
  2420. 2D2D2ZD
  2421. ZTD2D
  2422. kdkdf`
  2423. D2D2D2D2
  2424. 2_21D1
  2425. :-:-:
  2426. H_$_$_
  2427. D2D2D2
  2428. dkd`d`Ze._
  2429. _    D_1D1%1%1
  2430. _$H2H
  2431. :-:-I3
  2432. $H_2H
  2433. 2A2#1D1D1D2
  2434. d    kdkdfd`Ze
  2435. G3I:3
  2436. 2D1D1
  2437. _    Z_Z_ZF_ZD
  2438. G3G:-:
  2439. I:I-:
  2440. D_T_TZDZDZ
  2441. 2#2#A
  2442. _Z_DZ2
  2443. :-:-:-:
  2444. 12D1D1
  2445. ZeZ_Z
  2446. 3:3:I:-
  2447. :-:-:-
  2448. _$V_eZ`
  2449. 2ZDZDZD
  2450. %,>,>,
  2451. !#D!D!D#D#1D1
  2452. 21D21
  2453. !%,%,
  2454. 2HV_._e`Ydcdqde
  2455. _    ZDZ2ZDZDZ
  2456. %    12H$V_.Z.
  2457. cdcZce
  2458. DZ2ZDZDZDTDZDcDcDc
  2459. -:-:-:-:-:-
  2460. 3A3A2
  2461. 2D212D1
  2462. Z2D2ZDZDZDcDc1c1c1
  2463. >,>+>+>+>+>
  2464. -:-:-
  2465. 1D1D12D12D121#
  2466. 2DZ2D
  2467. cDcDcT
  2468. D1D2D
  2469. D1D%,%
  2470. +>+>+>+
  2471. >    +>+>+>
  2472. A3A3:3
  2473. 212121
  2474. 2D1cDc1c
  2475. ^>+>@>=>+>+
  2476. +>@>+=
  2477. H    _$_._Z2_D
  2478. 1c1c#c#cTD
  2479. =@+=+=>=
  2480. 3A3A3
  2481. #c1Dc
  2482. +@>=+>=+>=@>@>
  2483. =@>@=@=
  2484. 3A3A:
  2485. 2H_$2Z2Z
  2486. r,>^>
  2487. @>@>=@
  2488. @>=@=@
  2489. 2_2Z2D
  2490. XTDzXTz
  2491. @=>@=
  2492. @>=+=+=>@=@=@=
  2493. A:A3A3A
  2494. :3:3A
  2495. 1%2H2_2Z_
  2496. D2D1%X,>^,>r
  2497. r,r,^>^+
  2498. ZFDCO1D%,>=>=^,>
  2499. ,>^>+
  2500. 3:3:3:3:3:
  2501. 2_2_F2F_D_6
  2502. >+=+=>,r
  2503. r>,^>,^>@>@=+
  2504. G02%O
  2505. 4)1O84
  2506. >r>,^
  2507. @=@=@
  2508. G    64D8;%4
  2509. D6;C_XDRDR
  2510. g+=>@>=
  2511. ,r,>^,^
  2512. ^>@>+=
  2513. >=@=@
  2514. I:I:I:IGIG\
  2515. %;6H_D&;ND
  2516. r>,r>,^>^>@
  2517. :A:A3
  2518. -:-:-
  2519. -:I3IGI*
  2520. r ;D'
  2521. @=>@>^>,r>,r>
  2522. ^>+>+>@>
  2523. @=+=@=
  2524. 3:-:-:
  2525. -I-I-I
  2526. r,>^>^>+>@
  2527. I-GIU
  2528. %,+>@=
  2529. @=+=>^,r,r,r%X>
  2530. >^>+>+>+^>
  2531. =    A:A:A:A:3
  2532. 1_D2D_
  2533. >,=@=
  2534. X%r,X,
  2535. >+>^@>^@=>@
  2536. 3-:I@
  2537. =@=+>
  2538. r%r>,>,^>^
  2539. A:A:A
  2540. D2_D_D2
  2541. 6Dg6,+@=
  2542. =@=+>^
  2543. >r%>r%r%,r
  2544. >^>^>^>
  2545. =@=+>+
  2546. r%,X%r
  2547. ^>^,^,>^>@>=
  2548. 4<48=
  2549. r%,r%r%r
  2550. ^,>^>@=
  2551. %r%X%r>X
  2552. X,r%X%
  2553. r,r,@
  2554. -:-:@
  2555. X,X,r%,r,>=
  2556. %X%X%
  2557. %r%,X%r,r%
  2558. ;&D)5r
  2559. X,%X%
  2560. %X%X%r
  2561. %+>+=
  2562. _D_D_
  2563. %1_2_D_
  2564. X%,DX%DX%D
  2565. zXzrSTX^
  2566. -:-:-:
  2567. _D2_D_
  2568. 1D%,>@
  2569. 4%,D,DX,D
  2570. zrSzT
  2571. TSX,=
  2572. 4,O6DX\
  2573. 4rDXTXTrT
  2574. TzSX,=
  2575. ;8r^N%6
  2576. ;^C;\,
  2577. PXTrSzS
  2578. -:-:-:-:-
  2579. OTSbS
  2580. czczczcTSD,
  2581. OSczczc
  2582. TzTDX
  2583. :-:-:
  2584. TD%D%
  2585. -:-:-:
  2586. 6ODX9
  2587. :A:A:A:
  2588. A3A3A
  2589. zj}jz
  2590. A:A:A:A:
  2591. DFDFDZF
  2592. jzpjz
  2593. 2#2A#
  2594. 2    D1D
  2595. 2F2FD.ZD.2F
  2596. ZFDZTczcp
  2597. DZD2ZD2
  2598. 2D1D%
  2599. Z.FDF.FZF2F.
  2600. cqDZ2Z2_
  2601. ./Z2ZF.
  2602. F.Z.Z2FZ2Z.ZTZ
  2603. .2F/Z
  2604. /Z.Z2
  2605. 7!%7%7!
  2606. 2_D1%
  2607. 7%7!%>
  2608. >%>%>%7#
  2609. ./.F.F.
  2610. Z/F.Z/.2F.Z2Z.
  2611. 7%7%>%
  2612. D7!D%DXT
  2613. /./2/2Z.Z.$_.2
  2614. $H$2$_2_2_
  2615. ./.2_2_$_
  2616. H$_H2H$_$_$_H
  2617. _    e._Ze_._e
  2618. .2.2/$/2/2$H$
  2619. XFXFC
  2620. %>%>%>%7%!7!
  2621. $_$H_$V$_$H2
  2622. %,XCrSrNrX+N,
  2623. XDX%D7
  2624. H2$UH
  2625. %1%1D%
  2626. 7!A7!
  2627. 2HU$V$
  2628. D,X%D7!
  2629. $V$_V
  2630. DX%X,X
  2631. %#D%D%D
  2632. ,D,%,%
  2633. ,%D%,%
  2634. r*gN%D,
  2635. DEcjo
  2636. C@+N,D
  2637. %DZYd
  2638. !2e`f
  2639. _.`dfd
  2640. !%D%D
  2641. D1_eZ
  2642. %1!%1%
  2643. _Z_2.e_
  2644. 2Z_Z2._.e/
  2645. D#D#D1
  2646. Ze._V
  2647. FDZD.2Z_Z
  2648. DF_.Z2.`
  2649. .2.Zfdk
  2650. KRJFE
  2651. DFZ_D_
  2652. 3#G2G
  2653. RKzKbYE
  2654. 2G2G#G#
  2655. KRzKzjKcJFD
  2656. TZFZ_
  2657. FTFDXD
  2658. D    FZTZD_DZF
  2659. 2G#!1!%
  2660. XDXFTF
  2661. ZTFDT
  2662. EFJKYJb
  2663. zjojcbT
  2664. FJcbKjzjzKcbXDNFTS
  2665. X    DXTSTDFTc
  2666. #!1%!
  2667. czczK
  2668. XETXD
  2669. XTSTFXTcqj}
  2670. +XTST
  2671. F    EFJFJTJFT
  2672. +XSTS
  2673. JFYJFJF
  2674. NFNX+
  2675. +NCSC
  2676. XSXN+
  2677. rSXNXbc
  2678. .$.Z/Z
  2679. N+,NS
  2680. XrTXNXSz}z}y}yw}
  2681. 7!2GH
  2682. Z.Z.F.
  2683. ,NXrS
  2684. H$H2$
  2685. +QK*Q*
  2686. .F.F.F.
  2687. Q{RrCSCN@=+NrN
  2688. .D/F.F
  2689. B    {*^@>+^C^
  2690. NrCN^Nrb
  2691. D#!1X
  2692. %!GH$
  2693. F.F.Z
  2694. ZF.F.ZE.
  2695. +>+rN^+@NrS
  2696. MB)M)M
  2697. )M(LhB
  2698. brSvb
  2699. .F.DF.E
  2700. BQBQB
  2701. N@>+N
  2702. BQBQBQ
  2703. g@^C^@>g
  2704. N+=>=7=
  2705. %12#G
  2706. ]mP&9BQ
  2707. BMQMQ
  2708. BMB()
  2709. )g+^C^+=+^r^+
  2710. MPWBQMQ
  2711. r^+@+^N^>=
  2712. >rz~y
  2713. QMQMB\
  2714. QMQMB
  2715. )BMBM
  2716. M(h){r*^
  2717. ^N^+=
  2718. FTFTFR\;
  2719. (E9'4
  2720.     5Q9;
  2721. ~SsRr^
  2722. %121G
  2723. BW;?QLB?Q?
  2724. BuQ|v
  2725. bsr+@^
  2726. 1#21D
  2727. m4R;\RBRB9
  2728. Q    BR^C+^SRb
  2729. >,%1#12
  2730. ;4O&OC4
  2731. R9;B^
  2732. PR*RC^
  2733. RFPE9;RXBX
  2734. MEM5;R&
  2735. s^g^rsr@
  2736. mX4'E?
  2737. ^CrC^
  2738. >%!%2
  2739. CESREF
  2740. C    RCNFCESRJ
  2741. +CrS^@+rv
  2742. S^grsSrg
  2743. >%D1#D#D
  2744. C    ESRECNCRE
  2745. ^s~zvsrg^szr^=
  2746. %1D#%1#D1#
  2747. NCECFCS
  2748. ECECJRECFRJCF)OB
  2749. zsrg^r
  2750. #%1%D%1
  2751. (EJCJ
  2752. 4FXCFEFC&MJRSC
  2753. ububRr^+@^Sr^
  2754. rsSsr@g^zSsg=
  2755. %,1#%#
  2756. D    %DF&
  2757. EFNFCFCNP
  2758. LJCECJRJ
  2759. RECNCRbQzv
  2760. sbRrC+@^
  2761. ^rsr*g
  2762. sSs@=
  2763. D(%DO
  2764. mLE(4
  2765.  \9E9ONP
  2766. m'M4?
  2767. 'M4)C'm
  2768. r^+@^
  2769. 7%1D#!
  2770. 1%1DXD
  2771. O9mPN9mC8
  2772. X ;CB
  2773. \X)C&
  2774. LRMFR
  2775. ^r^@g*
  2776. ^rSsr@=
  2777. O4;BF
  2778. 7    >+^Sr^@g*
  2779. rsSs@=
  2780. F9;BEME\
  2781. 4+XO(9
  2782. P4FX)4L^\
  2783. 9ER&4&
  2784. 945PCF\
  2785. 4&9JC\
  2786. OMmtvim
  2787. miS'4
  2788. @CRr^
  2789. ^Ssr^=
  2790. NFXDX
  2791. vzRC,
  2792. >^rbsrg@g^r^g@g
  2793. FCFCX
  2794. FCJCXCJREF
  2795. bRSN>7!7!7!
  2796. @rubsr^@+^r^g@
  2797. ^sbsN
  2798. %,DNFNX
  2799. XFCFC
  2800. NFCERLREFX
  2801. ECEFNXFR
  2802. XCJEJ
  2803. C    SJbQK|vQK
  2804. !%DFX
  2805. FCECFCE
  2806. CFCERE
  2807. z    RS,7
  2808. ^Sbsr
  2809. NCFEJCEC
  2810. CJRCF
  2811. |vzQbS+
  2812. 7!,XF
  2813. CEJFN
  2814. FCEFXNCJRE
  2815. @rsz~z~Szr^
  2816. ^r^g^
  2817. CNXFC
  2818. FCSRbvQ
  2819. >+rsSv
  2820. Ssr^g@
  2821. ^r^g^NXbSr,>
  2822. CEJCFXNFCEFX
  2823. XCFNX
  2824. JRbvzQ
  2825. g@gNr*
  2826. N>rTSbr
  2827. FCFCR
  2828. EJbQzQ
  2829. >=^Cr^
  2830. g^r^g@^r
  2831. ,rTScTX
  2832. 7A7#7%,XC
  2833. CECFCXN
  2834. XFCECNCERECFC
  2835. |vQKbN,
  2836. 7>@^Cr^+
  2837. =@Nr^g
  2838. g^N^g@+r
  2839. N,XTScT
  2840. XCFCFXFRCE
  2841. 7!7!7!
  2842. ^rN+@NXr
  2843. !7A7!7!7%
  2844. XCFCFX
  2845. FCFCX
  2846. g+rN^+NX
  2847. E    XEFCFCFEC
  2848.     FCFC
  2849. XRbQK
  2850. |vKbC,
  2851. =@rSr^g
  2852. !&7!7!%!,XESRJRSRJSREJCEN
  2853. DFCFN
  2854. XFCECFCJ
  2855. bRN,7
  2856. DCSJb
  2857. RJRJCF
  2858. JRbKQ|vQ
  2859. QvzS,
  2860.     XECFNCSJb
  2861. |vQ|vzKbC,
  2862. 7#7#!7
  2863. D,SRbR
  2864. JRSCD
  2865. XFECF
  2866. CXCERQKvQv|v|
  2867. brN>7!
  2868. >,NSrRbsbRr^=>
  2869. rSzSzTX@
  2870. D,FTZ
  2871. %7!,XJ
  2872. bzSr+>
  2873. A7!A7!7
  2874. FCFCX
  2875. XDCSbKbzQvQ
  2876. %+CSbv
  2877. >%TZc
  2878. %!%7!
  2879. zKbS+
  2880. 7#!7!%,X
  2881. KvbrC,
  2882. %DXJSEN
  2883. DNFCFX
  2884. y}y}z}
  2885. A!7!7
  2886. DFEJR
  2887. zQvKzKQ
  2888. ~y}yz
  2889. !A7A!7
  2890. vbzKv
  2891. %Tdcqp
  2892. %XFCX
  2893. DNFXD%
  2894. CESQ9{
  2895. JSNXNFSb
  2896. >+SrJSCN
  2897. 7>DZcqpjq
  2898. czbJN
  2899. >%Zcq
  2900. !    %DXFX%D
  2901. XSESXE
  2902. zbcr,>7
  2903. +bKjKz
  2904. 4MSJbc
  2905. z    ozozcbSX
  2906. SczKczczbX
  2907. 7!%DX
  2908. D    X1%DXC
  2909. ENDFEF
  2910. m?9mS
  2911. >+SbKzbX
  2912. DZdcZY
  2913. ,XSJECX
  2914. ECXNFCF
  2915. 9&9'E5\mL9 m&T
  2916. %>%,X
  2917. SczcJX
  2918. DTcZcT
  2919. 7!7!7!7
  2920. %    XEJECXNCJ
  2921. N    FEX
  2922. &FCRF8m
  2923. ,FTZY
  2924. ScTD%7
  2925. %FTZcTD
  2926. ,XSEFN
  2927. SzbS+
  2928. %!%DF
  2929. zcjcz
  2930. XMOFX*59RO*
  2931. FEFNXFCEFX
  2932. FCJTF
  2933. FZTJZJYJ
  2934. (FJFX
  2935. tct?ZD
  2936. >+FXT,>
  2937. jpjpj
  2938. BP4*4
  2939. ;]ztW
  2940. tjy[yqi[q[
  2941. [zdi;
  2942. 9FRDBCJ5mjt
  2943. WtzmWc]5c
  2944. j";Wd
  2945. tQm[B>
  2946.     >+,TXDN+
  2947. icdjqW
  2948. ]jpmWcY|cd
  2949. ;?5dji
  2950. ki[q]
  2951. ;n[fdi
  2952. [ikim
  2953. mtji[
  2954. .ZFZYZdY
  2955. dkdqjd
  2956. 6;FZYScS
  2957. `Ydcdcdj
  2958. G$.Z`
  2959. sbSr@
  2960. 3U.eYdt
  2961. jkdjd
  2962. &R;8G
  2963. 3H.edt
  2964. dqdcdcd
  2965. 2#2#1
  2966. !4    -"
  2967. 'U.`t
  2968. q    dcqdcdcZc
  2969. sbsvbsvSsr@
  2970. $H2GH$H
  2971. ZcZcZTXD,XTS
  2972. 4"-IGQ
  2973. qdkqjd
  2974. D,+XTS
  2975. sbsub
  2976. Q`];kn
  2977. ;[dkdqdqjdq
  2978. zsbsb
  2979. bususu
  2980. sbsbs
  2981. -I3I3I3
  2982. I-8>"-
  2983. \    #"-
  2984. !81$.&
  2985. yny[]
  2986. ZcTcTc
  2987. svsbs^g
  2988. @=+NS
  2989. "-"-%
  2990. dozdi
  2991. qdqdq
  2992. SbcTXN+XrSv
  2993. -GIGI3
  2994. qcdqcdq
  2995. TbcbScXN+N
  2996. u    suvzsbvbv
  2997. SXN+rXvb
  2998. ususu{
  2999. cqdcq
  3000. zbSXNgN
  3001. u{u{u{u{u|u
  3002. SrN@+rS
  3003. {|{|utu
  3004. zbSrNg^r
  3005. u{u{u{u
  3006. -3GIU3
  3007. dcqcq
  3008. ScSbz
  3009. zbzSr^@^rS
  3010. qcqcqcZ
  3011. szSrNg+r
  3012. TbczS
  3013. bzszs
  3014. u{u{|{|u
  3015. I:-:-
  3016. #2Zdqcdq
  3017. ScTSczSz
  3018. b    zvszvzvr^
  3019. u{u{s
  3020. A#2Zc
  3021. zcbScb
  3022. vbzsvs
  3023. s{s{u
  3024. U$UG3
  3025. {s{s{s
  3026. TSczS
  3027. u{s{s
  3028. vzvszv
  3029. TzScT
  3030. S~szs
  3031. #212Z
  3032. zSzSzv
  3033. svusv
  3034. s    r^g
  3035. D#DX>,>^>rXrTzr
  3036. u~u|svs^g
  3037. {u{s{s
  3038. !%2D21D
  3039. =>+rXrzS
  3040. v    svszvsvs~
  3041. ~usr^
  3042. >=NrSz
  3043. u    sv^g
  3044. =>rsrs
  3045. sv~u~u~
  3046. rs{^s*g
  3047. svs^*
  3048. {s{s{s{
  3049. =@,rsv~|
  3050. rsrs^g
  3051. 21#1#2
  3052. ~u|u|u|
  3053. #7#7D#D1!D!D#D1D!7
  3054. g^rvu|u|u|u|u
  3055. 7#D1D#
  3056. 7!7!7!7!D!D!D
  3057. g^rsv
  3058. !#!A7A!A7A
  3059. =^sr~
  3060. {usv^*
  3061. s^r^*
  3062. g*^r^sg
  3063. g^sr^s^g
  3064. gsrsr*g
  3065. =>^,>@
  3066. =    g,%r,@
  3067. >r7>7
  3068. =,r,>=
  3069. =>,%r
  3070. =,^>=
  3071.     =,X%Xr%>^
  3072. >%^>@=
  3073. r%,^>@
  3074. =,>r%>r,^=@
  3075. >,%>%r
  3076. =>^,r
  3077. =>^>^>@
  3078. ZZZcccsss
  3079. RJJRBB
  3080. ssJ99
  3081. ccB11{RRZ11k11c1)J1)
  3082. {sR1!
  3083. kJ9J)
  3084. J!{ZB
  3085. R)kB!
  3086. skcscR
  3087. sZRB1
  3088. k9sJ!
  3089. 9RkR{
  3090. BZ{1Jk
  3091. )RBJZ19Js
  3092. BR{JRk19R!)Bks
  3093. BBJccsZR
  3094. kZ{cRs
  3095. cRkcBskB{k1s
  3096. B1BcBck!c
  3097. R{kRcs!Zc
  3098. JZ)JZ
  3099. 1Zc!BZ
  3100. k{s)JsZcs)Bc)9
  3101. ZcsBJ
  3102. JRc)1
  3103. avigator]; "CASe
  3104. *.PCX
  3105. TIFF 5.
  3106. XXXXXXXX
  3107. H22H2H2Hator]; "CASe
  3108. 22222222
  3109. XXXX________
  3110. --------ator]; "CASe
  3111. XX%XX%XX
  3112. ator]; "CASe
  3113. ator]; "CASe
  3114. ator]; "CASe
  3115. tttttttt
  3116. O=Lotus Notes
  3117. O=Lotus Notes
  3118. PURSAFO
  3119. |.:#U
  3120. O=Lotus Notes
  3121. CN=Lotus Notes Template Development/O=Lotus Notes
  3122. PURSAFO
  3123. Fde!f^^
  3124. )YNKaD
  3125. $ViewMapDataset
  3126. $ViewMapLayout
  3127. $NavImagemap
  3128. Submitted Certificates\ Waiting for Approval
  3129. HotspotRectangle1
  3130. CASetup
  3131.     1S4S6S
  3132. HotspotRectangle2
  3133. CertRequest
  3134.     1S4S
  3135. HotspotRectangle3
  3136. CertRegister
  3137.     1S4S
  3138. HotspotRectangle4
  3139. ViewKeyring
  3140.     1S4S
  3141. GraphicButton4
  3142. X,X,X,X,
  3143. X    ,DX%DX%X%
  3144. c`Zc`ZcY`Y
  3145. .e_/V
  3146. bzbzbzbzbczcz
  3147. %X%X%X%
  3148. zbzcz
  3149. d`cd`Z`Y`YZ
  3150. ,%X%X%
  3151. rTzcbczczcz
  3152. %X%X%
  3153. c`cd`c`Y`Y`Y
  3154. d    cdc`d`d`d
  3155. e`e/e
  3156. `dZ`d
  3157. Z`e.Q9Ve_(;
  3158. TrTrTr
  3159. f`f`Y
  3160. cdcdcZn
  3161. 4?'n\
  3162. brzSbSzS
  3163. +I:3A
  3164. #1212
  3165. ececdL
  3166. ~z~z~
  3167. DZDZ2D
  3168. m_UVU
  3169. bzSTcT
  3170. 1D    z~z~z~}z}
  3171. 9'8P8'I
  3172. bz~z~z~
  3173. SzTcT
  3174. H$_$V
  3175. 4{VeZ|e\
  3176. 1212#
  3177. cD2c2D
  3178. W ;rU
  3179. GH2H2
  3180. {'PTUVrZUVeVeL'Z1r
  3181. 7=A:A
  3182. GH2H2H2
  3183. 2_2H2H2H
  3184. H2H2H2
  3185. _HVHUH
  3186. _2_H_
  3187. U$UV_
  3188. _GHG2#3
  3189.     A#A#
  3190. H2H2_
  3191. !7!D#1
  3192. 3#3#2G2G
  3193. H2GH2H2H2G2
  3194. H2H2H2H
  3195. VHUGUH
  3196. H2H2H2H
  3197. U    H$V$V.e`f
  3198. '5eV_$_
  3199. #12#2
  3200. /V$H2
  3201. 2HG2H2H2H2
  3202. VHUHU
  3203. LVe_e
  3204. dc`e?
  3205. 2H2H2
  3206. Ve_e_.
  3207. V_H_21
  3208. H2H2H2H2H2G2H2H
  3209. A2A23G
  3210. _    V_U_UHUGI
  3211. OI;6IGUO9e_`?5`]
  3212. m 6 XV
  3213. V    U_U_H21%
  3214. H2H2H2H2H2H2H2
  3215. !A7A!
  3216. IHU$V/_e
  3217. _H2H2H2
  3218. 3H_V_V
  3219. V$HUIG
  3220. VH_21%
  3221. H2H2H2H
  3222. !A7A!
  3223. $VHUIG
  3224. _e._.'
  3225. HUHUGIG
  3226. U    $V._/_V; 
  3227. :A:A:3A3GH_e
  3228. UHU$V
  3229. HUGIGUGU$H_$
  3230. "%<8%
  3231. GU_/_V_V_VHUGIGUGU_$_$
  3232. IG$V_e_V_$U$GUGIG
  3233. :I:IGU_/.V._V_UHI
  3234. _2_2H
  3235. !1HV/e`
  3236. _V_2_
  3237. -:GIHV
  3238. D2Z232:3
  3239. I-IGU$e
  3240. Z2D2D2DZDZTZ2Z2Z
  3241. HV_HV_
  3242. _2_2_2D2D2Z2
  3243. /_V_2_
  3244. D2D2D
  3245. 2ZD2D1
  3246. %D!D%
  3247. -:-IGU$V.
  3248. 2D2D2ZD
  3249. ZTD2D
  3250. kdkdf`
  3251. D2D2D2D2
  3252. 2_21D1
  3253. :-:-:
  3254. H_$_$_
  3255. D2D2D2
  3256. dkd`d`Ze._
  3257. _    D_1D1%1%1
  3258. _$H2H
  3259. :-:-I3
  3260. $H_2H
  3261. 2A2#1D1D1D2
  3262. d    kdkdfd`Ze
  3263. G3I:3
  3264. 2D1D1
  3265. _    Z_Z_ZF_ZD
  3266. G3G:-:
  3267. I:I-:
  3268. D_T_TZDZDZ
  3269. 2#2#A
  3270. _Z_DZ2
  3271. :-:-:-:
  3272. 12D1D1
  3273. ZeZ_Z
  3274. 3:3:I:-
  3275. :-:-:-
  3276. _$V_eZ`
  3277. 2ZDZDZD
  3278. %,>,>,
  3279. !#D!D!D#D#1D1
  3280. 21D21
  3281. !%,%,
  3282. 2HV_._e`Ydcdqde
  3283. _    ZDZ2ZDZDZ
  3284. %    12H$V_.Z.
  3285. cdcZce
  3286. DZ2ZDZDZDTDZDcDcDc
  3287. -:-:-:-:-:-
  3288. 3A3A2
  3289. 2D212D1
  3290. Z2D2ZDZDZDcDc1c1c1
  3291. >,>+>+>+>+>
  3292. -:-:-
  3293. 1D1D12D12D121#
  3294. 2DZ2D
  3295. cDcDcT
  3296. D1D2D
  3297. D1D%,%
  3298. +>+>+>+
  3299. >    +>+>+>
  3300. A3A3:3
  3301. 212121
  3302. 2D1cDc1c
  3303. ^>+>@>=>+>+
  3304. +>@>+=
  3305. H    _$_._Z2_D
  3306. 1c1c#c#cTD
  3307. =@+=+=>=
  3308. 3A3A3
  3309. #c1Dc
  3310. +@>=+>=+>=@>@>
  3311. =@>@=@=
  3312. 3A3A:
  3313. 2H_$2Z2Z
  3314. r,>^>
  3315. @>@>=@
  3316. @>=@=@
  3317. 2_2Z2D
  3318. XTDzXTz
  3319. @=>@=
  3320. @>=+=+=>@=@=@=
  3321. A:A3A3A
  3322. :3:3A
  3323. 1%2H2_2Z_
  3324. D2D1%X,>^,>r
  3325. r,r,^>^+
  3326. ZFDCO1D%,>=>=^,>
  3327. ,>^>+
  3328. 3:3:3:3:3:
  3329. 2_2_F2F_D_6
  3330. >+=+=>,r
  3331. r>,^>,^>@>@=+
  3332. G02%O
  3333. 4)1O84
  3334. >r>,^
  3335. @=@=@
  3336. G    64D8;%4
  3337. D6;C_XDRDR
  3338. g+=>@>=
  3339. ,r,>^,^
  3340. ^>@>+=
  3341. >=@=@
  3342. I:I:I:IGIG\
  3343. %;6H_D&;ND
  3344. r>,r>,^>^>@
  3345. :A:A3
  3346. -:-:-
  3347. -:I3IGI*
  3348. r ;D'
  3349. @=>@>^>,r>,r>
  3350. ^>+>+>@>
  3351. @=+=@=
  3352. 3:-:-:
  3353. -I-I-I
  3354. r,>^>^>+>@
  3355. I-GIU
  3356. %,+>@=
  3357. @=+=>^,r,r,r%X>
  3358. >^>+>+>+^>
  3359. =    A:A:A:A:3
  3360. 1_D2D_
  3361. >,=@=
  3362. X%r,X,
  3363. >+>^@>^@=>@
  3364. 3-:I@
  3365. =@=+>
  3366. r%r>,>,^>^
  3367. A:A:A
  3368. D2_D_D2
  3369. 6Dg6,+@=
  3370. =@=+>^
  3371. >r%>r%r%,r
  3372. >^>^>^>
  3373. =@=+>+
  3374. r%,X%r
  3375. ^>^,^,>^>@>=
  3376. 4<48=
  3377. r%,r%r%r
  3378. ^,>^>@=
  3379. %r%X%r>X
  3380. X,r%X%
  3381. r,r,@
  3382. -:-:@
  3383. X,X,r%,r,>=
  3384. %X%X%
  3385. %r%,X%r,r%
  3386. ;&D)5r
  3387. X,%X%
  3388. %X%X%r
  3389. %+>+=
  3390. _D_D_
  3391. %1_2_D_
  3392. X%,DX%DX%D
  3393. zXzrSTX^
  3394. -:-:-:
  3395. _D2_D_
  3396. 1D%,>@
  3397. 4%,D,DX,D
  3398. zrSzT
  3399. TSX,=
  3400. 4,O6DX\
  3401. 4rDXTXTrT
  3402. TzSX,=
  3403. ;8r^N%6
  3404. ;^C;\,
  3405. PXTrSzS
  3406. -:-:-:-:-
  3407. OTSbS
  3408. czczczcTSD,
  3409. OSczczc
  3410. TzTDX
  3411. :-:-:
  3412. TD%D%
  3413. -:-:-:
  3414. 6ODX9
  3415. :A:A:A:
  3416. A3A3A
  3417. zj}jz
  3418. A:A:A:A:
  3419. DFDFDZF
  3420. jzpjz
  3421. 2#2A#
  3422. 2    D1D
  3423. 2F2FD.ZD.2F
  3424. ZFDZTczcp
  3425. DZD2ZD2
  3426. 2D1D%
  3427. Z.FDF.FZF2F.
  3428. cqDZ2Z2_
  3429. 2    ./Z2ZF.ZF
  3430. F.Z.Z2ZF.Z.ZTZ
  3431. /ZF.Z
  3432. 7!%7%7!
  3433. .Z.F.F
  3434. Z/.F.Z.
  3435. .DZ.Z
  3436. 2_D1%
  3437. 7%7!%>
  3438. >%>%>%7#
  3439. !#2$_$
  3440. F.2Z.Z.2.2.2.2.
  3441. 7%7%>%
  3442. XD%D%
  3443. 2./Z._.2/_
  3444. $H$2$_2_2_
  3445. DXTSTXT
  3446. 2./Z2.
  3447. Z/_.$_.2$H
  3448. _H2H$_$_$_H
  3449. _    e._Ze_._e
  3450. >%7%>%>%
  3451. %7%>%7A
  3452. rTDX%
  3453. /    2/2/2/2$/
  3454. $_H_$_$
  3455. XFXFC
  3456. >%!7A!A
  3457. !7!%TrSzTSrT
  3458. V$VH_$V$_$H2
  3459. >%!7!7
  3460. 7!7A!
  3461. /    $.$/$2$/2
  3462. V$U$U$
  3463. XSrXzXz
  3464. V$V$U$HVHG2G
  3465. XDXD%
  3466. A7A7A
  3467. TzXrT
  3468. 3G$/$/
  3469. $./$.
  3470. 2/$/$/H
  3471. %1%1D%
  3472. .$.$/.
  3473. $.$./$.
  3474. $._/$/
  3475. 2HU$V$
  3476. A7A7A
  3477. ./$/.
  3478. 2./._.
  3479. !    7A!7
  3480. ./$/$/.
  3481. $V$_V
  3482. %#D%D%D
  3483. ./././.
  3484. ./.2.Z
  3485. DX%D,
  3486. A7A7A
  3487. .    /././././
  3488. `eZ_1
  3489. !7!7A
  3490. ././$
  3491. /././
  3492. .e`fYf
  3493. X%X%D%
  3494. )%D&mRPL.$/$/$/.
  3495. ./$/$/././$
  3496. F9/./`./
  3497. DEcjo
  3498. ;9/L;
  3499. ,FYzo
  3500. R.F/+/Q
  3501. D,D,%D
  3502. /.];&
  3503. 5/9;R$R\
  3504. K.FZ/
  3505. &    $.\
  3506. !%XD%D
  3507. ,    +@=
  3508. $e`fdf
  3509. %D%!%D
  3510. D%!%D
  3511. >@=>@=
  3512. .0K/./
  3513. Z`YfYeF
  3514. 1_e`d
  3515. /    $/./.K
  3516. _ZfYfYeD%
  3517. D!D%D!
  3518. >,>+>
  3519. ;8$.\
  3520. ./9&$.\;m*/B;
  3521. A3A#A#!#
  3522. YZ2%!
  3523. !D!D%D!
  3524. NC;+?
  3525. /&m.L;/;]/R.P
  3526. !    1_`cjdf`F
  3527. jc`Z1
  3528. 7!%D%D
  3529. D%D!D!
  3530. '&0*\5./&
  3531. /;5?0&F/K
  3532. $HUHGH
  3533. !7!7!
  3534. *$F.L
  3535. KF;5/&
  3536. F/K/&Q0
  3537. .Z2_V/
  3538. &9/.9
  3539. 0KW50
  3540. _.Z_.e2._e_
  3541. _Z.Z2Z_.eV
  3542. D1#D%XCN^+^*C
  3543. FEJF$/
  3544. ./$/$/0
  3545. /$./.
  3546. Z.Z_2Z._.V
  3547. /.$./$././$
  3548. $/././@
  3549. ././$
  3550. ./$/./.
  3551. /./$/
  3552. Z.Z.Z
  3553. F.FYZ
  3554. oYoYopYp
  3555. 2#XNC
  3556. ./.$/$/./$/./.
  3557. oYoYoYo
  3558. _2Z.d
  3559. /$./$/././$/./
  3560. ././$/
  3561. Z.Y.FZ.
  3562. F    DFZ2Z2edk
  3563. ./$/././$/././.
  3564. oKjojo
  3565. 2Z2Zfdk
  3566. 2GHU$/$.$./$/./$/././$/
  3567. .Y.F.
  3568. KoYjKoYojKo
  3569. DFZF_
  3570. Z`Ydq
  3571. ZY.F.
  3572. KjKojK
  3573. qjcYZ
  3574. 3232G#G2
  3575. zojzozozoz
  3576. o    jcJFXETZT
  3577. zKjzKzjKjKoKjzozoz
  3578. zjpcJ
  3579. G2G23
  3580. G$/$/
  3581. .$./$
  3582. YjKYjYK
  3583. G2G23
  3584. .$.$.$
  3585. .D.Z.Z
  3586. Z.Y.F.F
  3587. FTZTF
  3588. $.$.$.$
  3589. .F.FY
  3590. Y    JZYZYZYJY
  3591. ojqzojbT
  3592. TZTXDXFT
  3593. DFTZT
  3594. 3G#G3G2
  3595. .F.F.
  3596. EFJbcj
  3597. jojzcbT
  3598. TZTDFTcj
  3599. jzczcbT+
  3600. ,XTST
  3601. !#G2H
  3602. NFXES
  3603. +,+NXSX
  3604. +XSrTXNXbc
  3605. +XCN+,+XCN
  3606. Xbz}z}y}yw}
  3607. ,NXrS
  3608. rN+Nr
  3609. DA%1X
  3610. N^+@+rSbz~y~
  3611. N+^,rsz~
  3612. >=,rv
  3613. @NsSbr
  3614. ^rbSr,
  3615. rbSr,>
  3616. N,rTSbr
  3617. ,rTScTX
  3618. ^NXrN,XTScT
  3619. =+^N^g
  3620. @^rN+@N
  3621. =+rSr^g
  3622. ^C^+@>
  3623. 7!7!%7!
  3624. JRSCR
  3625. =NSzSzTX@
  3626. 7!7!%7!7!%,F
  3627. QuRuKu
  3628. ,+NCRu
  3629. T    rX>
  3630. %!7%,CJSJbCEX
  3631. NERbKQbvK
  3632. bsN=>
  3633. >%TZcZT
  3634. zKbS+
  3635. 7#!7!%,X
  3636. KvbrC,
  3637. %DXJSEN
  3638. DNFCFX
  3639. y}y}z}
  3640. DFEJR
  3641. zQvKzKQ
  3642. ~y}yz
  3643. vbzKv
  3644. %Tdcqp
  3645. %XFCX
  3646. DNFXD%
  3647. CESQ9{
  3648. JSNXNFSb
  3649. >+SrJSCN
  3650. 7>DZcqpjq
  3651. czbJN
  3652. >%Zcq
  3653. !    %DXFX%D
  3654. XSESXE
  3655. zbcr,>7
  3656. +bKjKz
  3657. 4MSJbc
  3658. z    ozozcbSX
  3659. SczKczczbX
  3660. A!A!A
  3661. D    X1%DXC
  3662. ENDFEF
  3663. m?9mS
  3664. >+SbKzbX
  3665. DZdcZY
  3666. ,NSJECX
  3667. ECXNFCF
  3668. 9&9'E5\mL9 m&T
  3669. %>%,X
  3670. SczcJX
  3671. DTcZcT
  3672. %    XEJECXNCJ
  3673. N    FEX
  3674. &FCRF8m
  3675. ,FTZY
  3676. ScTD%7
  3677. %FTZcTD
  3678. 7#!%!%!D,XJEFN
  3679. SzbS+
  3680. zcjcz
  3681. #!%DFT
  3682. MOFX*59RO*
  3683. FEFNXFCEFX
  3684. FCJTF
  3685. FZTJZJYJ
  3686. (FJFX
  3687. tct?ZD
  3688. >+FXT,>
  3689. jpjpj
  3690. BP4*4
  3691. ;]ztW
  3692. tjy[yqi[q[
  3693. [zdi;
  3694. 9FRDBCJ5mjt
  3695. WtzmWc]5c
  3696. j";Wd
  3697. tQm[B>
  3698.     >+,TXDN+
  3699. icdjqW
  3700. ]jpmWcY|cd
  3701. ;?5dji
  3702. ki[q]
  3703. ;n[fdi
  3704. [ikim
  3705. mtji[
  3706. .ZFZYZdY
  3707. dkdqjd
  3708. 6;FZYScS
  3709. `Ydcdcdj
  3710. #2#2#1#2
  3711. G$.Z`
  3712. sbSr@
  3713. 3U.eYdt
  3714. jkdjd
  3715. &R;8G
  3716. 3H.edt
  3717. dqdcdcd
  3718. !4    -"
  3719. 'U.`t
  3720. q    dcqdcdcZc
  3721. sbsvbsvSsr@
  3722. $H2GH$H
  3723. ZcZcZTXD,XTS
  3724. 4"-IGQ
  3725. qdkqjd
  3726. D,+XTS
  3727. sbsub
  3728. Q`];kn
  3729. ;[dkdqdqjdq
  3730. zsbsb
  3731. bususu
  3732. sbsbs
  3733. I-8>"-
  3734. \    #"-
  3735. !81$.&
  3736. yny[]
  3737. ZcTcTc
  3738. svsbs^g
  3739. @=+NS
  3740. "-"-%
  3741. dozdi
  3742. qdqdq
  3743. SbcTXN+XrSv
  3744. qcdqcdq
  3745. TbcbScXN+N
  3746. u    suvzsbvbv
  3747. 3-IGU
  3748. SXN+rXvb
  3749. ususu{
  3750. cqdcq
  3751. zbSXNgN
  3752. u{u{u{u{u|u
  3753. SrN@+rS
  3754. {|{|utu
  3755. 3G-IG
  3756. zbSrNg^r
  3757. u{u{u{u
  3758. dcqcq
  3759. ScSbz
  3760. zbzSr^@^rS
  3761. qcqcqcZ
  3762. szSrNg+r
  3763. TbczS
  3764. bzszs
  3765. u{u{|{|u
  3766. I:-:-
  3767. #2Zdqcdq
  3768. ScTSczSz
  3769. b    zvszvzvr^
  3770. u{u{s
  3771.     :3GI-
  3772. A#2Zc
  3773. zcbScb
  3774. vbzsvs
  3775. s{s{u
  3776. U$UG3
  3777. {s{s{s
  3778. TSczS
  3779. u{s{s
  3780. S~vszvz
  3781. #212Z
  3782. {us{s
  3783. s    r^g
  3784. D1DX>,
  3785. !%2D21D
  3786. svszvsvs~vu~uv
  3787. >NrS~z
  3788. {    s{rs{^s*g
  3789. =@rzSv~s
  3790. u~vsu~
  3791. s{s{r{
  3792. A32#2
  3793. 7!#D1D7
  3794. c1#1#2
  3795. A!A!#
  3796. {s{s{srs^
  3797. #7#7D#D1#!D#D1
  3798. 7!7!7!7!D!D!D
  3799. g^rsv
  3800. *s^s{s{
  3801. =^sr~
  3802. rsr^*
  3803. g*^r^
  3804. ^    sr*g
  3805. 7>,>7
  3806. =>^,>@=
  3807. g,rX,=
  3808. >r7>7
  3809. =,r,>=
  3810. r%>^g
  3811. =,^>=
  3812. r%>,+
  3813. =r%>r%>,^g@>
  3814. >,r>%r>=>@
  3815. g>^>=@
  3816. >7>7>
  3817. ZZZcccsss
  3818. RJJRBB
  3819. ssJ99
  3820. ccB11{RRZ11k11c1)J1)
  3821. {sR1!
  3822. kJ9J)
  3823. J!{ZB
  3824. R)kB!
  3825. skcscR
  3826. sZRB1
  3827. k9sJ!
  3828. 9RkR{
  3829. BZ{1Jk
  3830. )RBJZ19Js
  3831. BR{JRk19R!)Bks
  3832. BBJccsZR
  3833. kZ{cRs
  3834. cRkcBskB{k1s
  3835. B1BcBck!c
  3836. R{kRcs!Zc
  3837. JZ)JZ
  3838. 1Zc!BZ
  3839. k{s)JsZcs)Bc)9
  3840. ZcsBJ
  3841. JRc)1
  3842. JPEG Image
  3843. *.JPG
  3844. XXXXXXXX Image
  3845. *.JPG
  3846. H22H2H2Hg
  3847. 22222222Y
  3848. ________ Image
  3849. *.JPG
  3850. --------g
  3851. XXXXXX%XX%XX#
  3852. %%%%%%%% Image
  3853. *.JPG
  3854. ........g
  3855.  Image
  3856. *.JPG
  3857.  Image
  3858. *.JPG
  3859.  Image
  3860. *.JPG
  3861.  Image
  3862. *.JPG
  3863.  Image
  3864. *.JPG
  3865. tttttttt
  3866.  Image
  3867. *.JPG
  3868. O=Lotus Notes
  3869. O=Lotus Notes
  3870. PURSAFO
  3871. |.:#U
  3872. O=Lotus Notes
  3873. CN=Lotus Notes Template Development/O=Lotus Notes
  3874. PURSAFO
  3875. Fde!f^^
  3876.  lO@Y
  3877. u    !aV
  3878. $ViewMapDataset
  3879. $ViewMapLayout
  3880. $NavImagemap
  3881. Keyring Administration
  3882. HotspotRectangle4
  3883. ViewKeyring
  3884.     1S4S
  3885. HotspotRectangle3
  3886. CertRegister
  3887.     1S4S
  3888. HotspotRectangle2
  3889. CertRequest
  3890.     1S4S
  3891. HotspotRectangle1
  3892. CASetup
  3893.     1S4S6S
  3894. GraphicButton3
  3895. X,X,X,X,
  3896. X    ,DX%DX%X%
  3897. c`Zc`ZcY`Y
  3898. .e_/V
  3899. bzbzbzbzbczcz
  3900. %X%X%X%
  3901. zbzcz
  3902. d`cd`Z`Y`YZ
  3903. ,%X%X%
  3904. rTzcbczczcz
  3905. %X%X%
  3906. c`cd`c`Y`Y`Y
  3907. d    cdc`d`d`d
  3908. e`e/e
  3909. `dZ`d
  3910. Z`e.Q9Ve_(;
  3911. TrTrTr
  3912. f`f`Y
  3913. cdcdcZn
  3914. 4?'n\
  3915. brzSbSzS
  3916. +I:3A
  3917. #1212
  3918. ececdL
  3919. ~z~z~
  3920. DZDZ2D
  3921. m_UVU
  3922. bzSTcT
  3923. 1D    z~z~z~}z}
  3924. 9'8P8'I
  3925. bz~z~z~
  3926. SzTcT
  3927. H$_$V
  3928. 4{VeZ|e\
  3929. 1212#
  3930. cD2c2D
  3931. W ;rU
  3932. GH2H2
  3933. {'PTUVrZUVeVeL'Z1r
  3934. 7=A:A
  3935. GH2H2H2
  3936. 2_2H2H2H
  3937. H2H2H2
  3938. _HVHUH
  3939. _2_H_
  3940. U$UV_
  3941. _GHG2#3
  3942.     A#A#
  3943. H2H2_
  3944. !7!D#1
  3945. 3#3#2G2G
  3946. H2GH2H2H2G2
  3947. H2H2H2H
  3948. VHUGUH
  3949. H2H2H2H
  3950. U    H$V$V.e`f
  3951. '5eV_$_
  3952. #12#2
  3953. /V$H2
  3954. 2HG2H2H2H2
  3955. VHUHU
  3956. LVe_e
  3957. dc`e?
  3958. 2H2H2
  3959. Ve_e_.
  3960. V_H_21
  3961. H2H2H2H2H2G2H2H
  3962. A2A23G
  3963. _    V_U_UHUGI
  3964. OI;6IGUO9e_`?5`]
  3965. m 6 XV
  3966. V    U_U_H21%
  3967. H2H2H2H2H2H2H2
  3968. !A7A!
  3969. IHU$V/_e
  3970. _H2H2H2
  3971. 3H_V_V
  3972. V$HUIG
  3973. VH_21%
  3974. H2H2H2H
  3975. !A7A!
  3976. $VHUIG
  3977. _e._.'
  3978. HUHUGIG
  3979. U    $V._/_V; 
  3980. :A:A:3A3GH_e
  3981. UHU$V
  3982. HUGIGUGU$H_$
  3983. "%<8%
  3984. GU_/_V_V_VHUGIGUGU_$_$
  3985. IG$V_e_V_$U$GUGIG
  3986. :I:IGU_/.V._V_UHI
  3987. _2_2H
  3988. !1HV/e`
  3989. _V_2_
  3990. -:GIHV
  3991. D2Z232:3
  3992. I-IGU$e
  3993. Z2D2D2DZDZTZ2Z2Z
  3994. HV_HV_
  3995. _2_2_2D2D2Z2
  3996. /_V_2_
  3997. D2D2D
  3998. 2ZD2D1
  3999. %D!D%
  4000. -:-IGU$V.
  4001. 2D2D2ZD
  4002. ZTD2D
  4003. kdkdf`
  4004. D2D2D2D2
  4005. 2_21D1
  4006. :-:-:
  4007. H_$_$_
  4008. D2D2D2
  4009. dkd`d`Ze._
  4010. _    D_1D1%1%1
  4011. _$H2H
  4012. :-:-I3
  4013. $H_2H
  4014. 2A2#1D1D1D2
  4015. d    kdkdfd`Ze
  4016. G3I:3
  4017. 2D1D1
  4018. _    Z_Z_ZF_ZD
  4019. G3G:-:
  4020. I:I-:
  4021. D_T_TZDZDZ
  4022. 2#2#A
  4023. _Z_DZ2
  4024. :-:-:-:
  4025. 12D1D1
  4026. ZeZ_Z
  4027. 3:3:I:-
  4028. :-:-:-
  4029. _$V_eZ`
  4030. 2ZDZDZD
  4031. %,>,>,
  4032. !#D!D!D#D#1D1
  4033. 21D21
  4034. !%,%,
  4035. 2HV_._e`Ydcdqde
  4036. _    ZDZ2ZDZDZ
  4037. %    12H$V_.Z.
  4038. cdcZce
  4039. DZ2ZDZDZDTDZDcDcDc
  4040. -:-:-:-:-:-
  4041. 3A3A2
  4042. 2D212D1
  4043. Z2D2ZDZDZDcDc1c1c1
  4044. >,>+>+>+>+>
  4045. -:-:-
  4046. 1D1D12D12D121#
  4047. 2DZ2D
  4048. cDcDcT
  4049. D1D2D
  4050. D1D%,%
  4051. +>+>+>+
  4052. >    +>+>+>
  4053. A3A3:3
  4054. 212121
  4055. 2D1cDc1c
  4056. ^>+>@>=>+>+
  4057. +>@>+=
  4058. H    _$_._Z2_D
  4059. 1c1c#c#cTD
  4060. =@+=+=>=
  4061. 3A3A3
  4062. #c1Dc
  4063. +@>=+>=+>=@>@>
  4064. =@>@=@=
  4065. 3A3A:
  4066. 2H_$2Z2Z
  4067. r,>^>
  4068. @>@>=@
  4069. @>=@=@
  4070. 2_2Z2D
  4071. XTDzXTz
  4072. @=>@=
  4073. @>=+=+=>@=@=@=
  4074. A:A3A3A
  4075. :3:3A
  4076. 1%2H2_2Z_
  4077. D2D1%X,>^,>r
  4078. r,r,^>^+
  4079. ZFDCO1D%,>=>=^,>
  4080. ,>^>+
  4081. 3:3:3:3:3:
  4082. 2_2_F2F_D_6
  4083. >+=+=>,r
  4084. r>,^>,^>@>@=+
  4085. G02%O
  4086. 4)1O84
  4087. >r>,^
  4088. @=@=@
  4089. G    64D8;%4
  4090. D6;C_XDRDR
  4091. g+=>@>=
  4092. ,r,>^,^
  4093. ^>@>+=
  4094. >=@=@
  4095. I:I:I:IGIG\
  4096. %;6H_D&;ND
  4097. r>,r>,^>^>@
  4098. :A:A3
  4099. -:-:-
  4100. -:I3IGI*
  4101. r ;D'
  4102. @=>@>^>,r>,r>
  4103. ^>+>+>@>
  4104. @=+=@=
  4105. 3:-:-:
  4106. -I-I-I
  4107. r,>^>^>+>@
  4108. I-GIU
  4109. %,+>@=
  4110. @=+=>^,r,r,r%X>
  4111. >^>+>+>+^>
  4112. =    A:A:A:A:3
  4113. 1_D2D_
  4114. >,=@=
  4115. X%r,X,
  4116. >+>^@>^@=>@
  4117. 3-:I@
  4118. =@=+>
  4119. r%r>,>,^>^
  4120. A:A:A
  4121. D2_D_D2
  4122. 6Dg6,+@=
  4123. =@=+>^
  4124. >r%>r%r%,r
  4125. >^>^>^>
  4126. =@=+>+
  4127. r%,X%r
  4128. ^>^,^,>^>@>=
  4129. 4<48=
  4130. r%,r%r%r
  4131. ^,>^>@=
  4132. %r%X%r>X
  4133. X,r%X%
  4134. r,r,@
  4135. -:-:@
  4136. X,X,r%,r,>=
  4137. %X%X%
  4138. %r%,X%r,r%
  4139. ;&D)5r
  4140. X,%X%
  4141. %X%X%r
  4142. %+>+=
  4143. _D_D_
  4144. %1_2_D_
  4145. X%,DX%DX%D
  4146. zXzrSTX^
  4147. -:-:-:
  4148. _D2_D_
  4149. 1D%,>@
  4150. 4%,D,DX,D
  4151. zrSzT
  4152. TSX,=
  4153. 4,O6DX\
  4154. 4rDXTXTrT
  4155. TzSX,=
  4156. ;8r^N%6
  4157. ;^C;\,
  4158. PXTrSzS
  4159. -:-:-:-:-
  4160. OTSbS
  4161. czczczcTSD,
  4162. OSczczc
  4163. TzTDX
  4164. :-:-:
  4165. TD%D%
  4166. -:-:-:
  4167. 6ODX9
  4168. :A:A:A:
  4169. A3A3A
  4170. zj}jz
  4171. A:A:A:A:
  4172. DFDFDZF
  4173. jzpjz
  4174. 2#2A#
  4175. 2    D1D
  4176. 2F2FD.ZD.2F
  4177. ZFDZTczcp
  4178. DZD2ZD2
  4179. 2D1D%
  4180. Z.FDF.FZF2F.
  4181. cqDZ2Z2_
  4182. 2    ./Z2ZF.ZF
  4183. F.Z.Z2ZF.Z.ZTZ
  4184. /ZF.Z
  4185. 7!%7%7!
  4186. .Z.F.F
  4187. Z/.F.Z.
  4188. .DZ.Z
  4189. 2_D1%
  4190. 7%7!%>
  4191. >%>%>%7#
  4192. !#2$_$
  4193. F.2Z.Z.2.2.2.2.
  4194. 7%7%>%
  4195. XD%D%
  4196. 2./Z._.2/_
  4197. $H$2$_2_2_
  4198. DXTSTXT
  4199. 2./Z2.
  4200. Z/_.$_.2$H
  4201. _H2H$_$_$_H
  4202. _    e._Ze_._e
  4203. >%7%>%>%
  4204. %7%>%7A
  4205. rTDX%
  4206. /    2/2/2/2$/
  4207. $_H_$_$
  4208. XFXFC
  4209. >%!7A!A
  4210. !7!%TrSzTSrT
  4211. V$VH_$V$_$H2
  4212. >%!7!7
  4213. 7!7A!
  4214. /    $.$/$2$/2
  4215. V$U$U$
  4216. XSrXzXz
  4217. V$V$U$HVHG2G
  4218. XDXD%
  4219. A7A7A
  4220. TzXrT
  4221. 3G$/$/
  4222. $./$.
  4223. 2/$/$/H
  4224. %1%1D%
  4225. .$.$/.
  4226. $.$./$.
  4227. $._/$/
  4228. 2HU$V$
  4229. A7A7A
  4230. ./$/.
  4231. 2./._.
  4232. !    7A!7
  4233. ./$/$/.
  4234. $V$_V
  4235. %#D%D%D
  4236. ./././.
  4237. ./.2.Z
  4238. DX%D,
  4239. A7A7A
  4240. .    /././././
  4241. `eZ_1
  4242. !7!7A
  4243. ././$
  4244. /././
  4245. .e`fYf
  4246. X%X%D%
  4247. )%D&mRPL.$/$/$/.
  4248. ./$/$/././$
  4249. F9/./`./
  4250. DEcjo
  4251. ;9/L;
  4252. ,FYzo
  4253. R.F/+/Q
  4254. D,D,%D
  4255. /.];&
  4256. 5/9;R$R\
  4257. K.FZ/
  4258. &    $.\
  4259. !%XD%D
  4260. ,    +@=
  4261. $e`fdf
  4262. %D%!%D
  4263. D%!%D
  4264. >@=>@=
  4265. .0K/./
  4266. Z`YfYeF
  4267. 1_e`d
  4268. /    $/./.K
  4269. _ZfYfYeD%
  4270. D!D%D!
  4271. >,>+>
  4272. ;8$.\
  4273. ./9&$.\;m*/B;
  4274. A3A#A#!#
  4275. YZ2%!
  4276. !D!D%D!
  4277. NC;+?
  4278. /&m.L;/;]/R.P
  4279. !    1_`cjdf`F
  4280. jc`Z1
  4281. 7!%D%D
  4282. D%D!D!
  4283. '&0*\5./&
  4284. /;5?0&F/K
  4285. $HUHGH
  4286. !7!7!
  4287. *$F.L
  4288. KF;5/&
  4289. F/K/&Q0
  4290. .Z2_V/
  4291. &9/.9
  4292. 0KW50
  4293. _.Z_.e2._e_
  4294. _Z.Z2Z_.eV
  4295. D1#D%XCN^+^*C
  4296. FEJF$/
  4297. ./$/$/0
  4298. /$./.
  4299. Z.Z_2Z._.V
  4300. /.$./$././$
  4301. $/././@
  4302. ././$
  4303. ./$/./.
  4304. /./$/
  4305. Z.Z.Z
  4306. F.FYZ
  4307. oYoYopYp
  4308. 2#XNC
  4309. ./.$/$/./$/./.
  4310. oYoYoYo
  4311. _2Z.d
  4312. /$./$/././$/./
  4313. ././$/
  4314. Z.Y.FZ.
  4315. F    DFZ2Z2edk
  4316. ./$/././$/././.
  4317. oKjojo
  4318. 2Z2Zfdk
  4319. 2GHU$/$.$./$/./$/././$/
  4320. .Y.F.
  4321. KoYjKoYojKo
  4322. DFZF_
  4323. Z`Ydq
  4324. ZY.F.
  4325. KjKojK
  4326. qjcYZ
  4327. 3232G#G2
  4328. Z.Z.Z
  4329. zojzozozoz
  4330. o    jcJFXETZT
  4331. ./.$/$/
  4332. $.$.$
  4333. .Z.Z.Z
  4334. zKjzKzoKjKoKjzozoz
  4335. zjpcJ
  4336. G2G23
  4337. /$/$/
  4338. FZ.YZ
  4339. YjKYj
  4340. G2G23
  4341. /$/$/
  4342. Z.Z.ZY
  4343. .    ZF.FZ.ZYZ
  4344. FTZTF
  4345. .YZYZ
  4346. JZYTZJ
  4347. ojqzojbT
  4348. TZTXDXFT
  4349. DFTZT
  4350. 3G#G3G2
  4351. YF.ZF.FZ.ZE.
  4352. 12H/$/
  4353. Z.Z.F.FZYZF.FY.
  4354. TJcKj
  4355. ozjzcbT
  4356. TZTDFTcj
  4357. %!1GIU$
  4358. .    F.F.FY.F.
  4359. ZFZFZ
  4360. DFTYbcjzjzj
  4361. ,XTST
  4362. .    D.FZFZF.Y
  4363. TFYTYTYT
  4364. D.ZF.F.Y
  4365. JYJYTJYTEF
  4366. NFCN+,
  4367. +NCSN
  4368. XSCN+XSrTXNXbc
  4369. NCXN,
  4370. Xbz}z}y}yw}
  4371. Z.Z.Z
  4372. RKRKR
  4373. .EYFYJ
  4374. .F.F.F.
  4375. K*KQK
  4376. )B)BQBuR
  4377. r    SN^+=+NrN
  4378. NrSN+Nr
  4379. .F.F.FD.
  4380. MQMQMB
  4381. B    )r*+=+N^N
  4382. NrCN^Nrbz}
  4383. DA%1X
  4384. /F.D/Z
  4385. BMBMBM
  4386. ()()()
  4387. H$2H2$
  4388. FZ.F.
  4389. MBMB)MB
  4390. h{^+=+^N^+@^
  4391. sS~z~
  4392. QMBMBMB
  4393. L()@=
  4394. N^+@+^
  4395. ^r^,rsz~
  4396. >@+^N
  4397. %12#G
  4398. 9m?&9BQ
  4399. BMQMQ
  4400. )g+^C^+@>^r^+
  4401. MPWBQMQ
  4402. BMB)B
  4403. r^+@+^r+>=
  4404. >rz~y
  4405. QhQB\
  4406. QMQMB
  4407. L(h)B{g^
  4408. ^N^+=
  4409. 7=>Nz~
  4410. FTFTFRW;
  4411.     5Q9;
  4412. 9MBMB
  4413. bsRr^
  4414. BW;?QLB?Q?
  4415. )*)Bu
  4416. !1212
  4417. m4R;\RBRB9
  4418. R^*+^SRuz~y
  4419. O&OC4
  4420. R9;B^
  4421. PR^RC^
  4422. RFPE9;RXBX
  4423. F%N;9CF
  4424. MEM5;R&
  4425. C^SC^
  4426. rv~y~y~zs^g^rsr@
  4427. mXm8E'4
  4428. >%!1D21#
  4429. FEJEXESJ
  4430. CRJECXCR
  4431. C    RCNFCESRJ
  4432. CrS^@+rs
  4433. s^grsSrg
  4434. #%#D1#%1
  4435. CEFXEC
  4436. z    S^g^szr^=
  4437. CFECECJCF
  4438. NECFCXE
  4439. ECJRECEC
  4440. zsrg^r
  4441. m(EJC
  4442. &MJRS
  4443. ECECR&(CL
  4444. Rr^+@C
  4445. rsSsr
  4446. ^zSsg=
  4447. CFNFCE
  4448. RbQzvzvu
  4449. sbRrC
  4450. ^rsr*g
  4451. sSs@=
  4452.  \9C9ONP
  4453. m?Mm'
  4454. m'MmBCPm
  4455. ;iv05];
  4456. r^@g^
  4457. 7>1D#!
  4458. #%1DX
  4459. F ;CB
  4460. 4)C;\X)C&
  4461. LRMFR;\R&
  4462. ^rSsr@=
  4463. >+^Sr^
  4464. rsSs@=
  4465. F\;BEMCW
  4466. 4+XO(9
  4467. D    P4FX)4MC\
  4468.     \JC9
  4469. 5PCF\
  4470. 9M4(CRm
  4471. 4&9JC\
  4472. 9Mmtvi;
  4473. miS'4
  4474. @rRr^
  4475. ^Ssr^=>
  4476. A!%D,D
  4477. KzRC+
  4478. >^rbRrg
  4479. ^r^g@g
  4480. srbr^=>
  4481. FNXFCJCXCSRECF
  4482. JCECERb
  4483. @ruzsr^@
  4484. ^sSsr=>
  4485. CFCFX
  4486. CBMRCFN
  4487. FCRJCE
  4488. SJbvb|vQzbRC,
  4489. NCECFE
  4490. ECFNXF
  4491. SRbKQ
  4492. vzbRS,7
  4493. EJCEC
  4494. CFERJ
  4495. QvbS+
  4496. >@rsz
  4497. zvr^@g
  4498. XFEFC
  4499. JFNXCECFNXCRECECER
  4500. zbJN,
  4501. +rbz~z~Szr^@g
  4502. NrSbr
  4503. CFNXFEJ
  4504. SRbvQ
  4505. QvKuS+
  4506. Ssr^@g
  4507. EJCFXNFCECX
  4508. FCRFCEC
  4509. r,%7    
  4510. A7A7!
  4511. XCFXNXNF
  4512. CFECE
  4513. FCERFCECRE
  4514. g@^N^*
  4515. rTSbT
  4516. F    CFN
  4517. XFCEF
  4518. EJbQz
  4519. |v|vzbC,
  4520. >=^Cr^
  4521. g^r^g@^rNrN,rTScr,
  4522. 7!%,X
  4523. FCFNDXFCEFN
  4524. EJbQz
  4525. |vKbC,7
  4526. 7>=^Cr^+=
  4527. =+^r^g@g^N^+g+NSXN+XTbcT
  4528. 7!%,FCFC
  4529. XNXCXCXCN
  4530. FCECF
  4531. FCNFCR
  4532. RbQKvQ
  4533. g^rN^+^
  4534. XNFECEC
  4535. NFCFE
  4536. =^rSr^g
  4537. A7A7!7
  4538. CJCSR
  4539. bQzKbRN>
  4540. uQRQRuQubu
  4541. +N^S^@=
  4542. @=+XT
  4543. NCrC^+>
  4544. @^SrbSXN@=>X
  4545. !7%7!%
  4546. SrSC*>
  4547. 7!%7!7!7%7
  4548. +NCSbsrRS^
  4549. @NSTSzTX+
  4550. NCbuQ
  4551. ,TZcZT
  4552. =NXTrTrN+
  4553. CR*R+R+R+
  4554. 7%Tdqc
  4555. +CRJSC+
  4556. ,Zcqpjq
  4557. CbKcbX
  4558. DZcdZc
  4559. JbKJN>
  4560. CRKbS
  4561. *+*^C^=
  4562. C*sr^*
  4563. +*R*Rrsr^
  4564. @+,Nr
  4565. zuvbuv
  4566. Qs{sQsu|
  4567. C    ^R)r{*{)s
  4568. u    {u{utu|~|
  4569. NCr)R
  4570. RCR+RC+
  4571. ^rsRs{
  4572. u{|u|~|
  4573. EFCFCECJ^
  4574. RCRSC+
  4575. u{u{|
  4576. CFESCJ
  4577. CbRburS
  4578. FTFCSCEJSJ
  4579. bsbubs
  4580. |{|u|~vsSr+
  4581. F    TYJYJTFTJ
  4582. bSbRsQub|ubsC^
  4583. GHG2G3
  4584. sr^@g^
  4585. !1DZSc
  4586. bScScS
  4587. Szbvzbuv
  4588. u{svsr^g
  4589. 3G3G3
  4590. 1ZTZS
  4591. cbcSc
  4592. s{s{u
  4593. bSbSzSbzbvbzbuzu
  4594. T    SbSbSzSzs
  4595. s    r^g
  4596. HGH3A
  4597. +NXrSTzb
  4598. vzvzs
  4599. =+NXSzS~vsvs
  4600. {s{s{s
  4601. 3G21G
  4602. !12D1%
  4603. ~svu~u~
  4604. ^rs{s
  4605. rs{^s*g
  4606. =+rSs
  4607. 7#D1D%7
  4608. s|~u~
  4609. 2#12c
  4610. g^rs~|
  4611. #D1!D!D1D#
  4612. =g^rsv
  4613. 7!%!D1D#
  4614. u    svr^*
  4615. *s^s{
  4616. #!A7A
  4617. !7!7!
  4618. ^s^*g
  4619. rsr^*
  4620. g*^rs
  4621. g^rsr
  4622. gsrsr^
  4623. 7>,>7
  4624. =>^,+
  4625. g,rX,g
  4626. >r7>7
  4627. =,r,>
  4628. r%>,@
  4629. g7>7>
  4630. =,^>=
  4631. r%r>,g
  4632. r%>,^
  4633. 7>7g>
  4634. =^%>r%>,^=@>
  4635. =>,r>%r>g
  4636. ZZZcccsss
  4637. RJJRBB
  4638. ssJ99
  4639. ccB11{RRZ11k11c1)J1)
  4640. {sR1!
  4641. kJ9J)
  4642. J!{ZB
  4643. R)kB!
  4644. skcscR
  4645. sZRB1
  4646. k9sJ!
  4647. 9RkR{
  4648. BZ{1Jk
  4649. )RBJZ19Js
  4650. BR{JRk19R!)Bks
  4651. BBJccsZR
  4652. kZ{cRs
  4653. cRkcBskB{k1s
  4654. B1BcBck!c
  4655. R{kRcs!Zc
  4656. JZ)JZ
  4657. 1Zc!BZ
  4658. k{s)JsZcs)Bc)9
  4659. ZcsBJ
  4660. JRc)1
  4661. ]; "ViewKeyring"
  4662. *.TIF
  4663. XXXXXXXX
  4664. H22H2H2H
  4665. 22222222
  4666. ________
  4667. --------N
  4668. XX%XX%XXViewKeyring"
  4669. %%%%%%%%
  4670. XXXX........W
  4671. ViewKeyring"
  4672. ViewKeyring"
  4673. ViewKeyring"
  4674. ViewKeyring"
  4675. @ABCDEFGHIJKLMNO
  4676. ViewKeyring"
  4677. O=Lotus Notes
  4678. O=Lotus Notes
  4679. PURSAFO
  4680. |.:#U
  4681. O=Lotus Notes
  4682. CN=Lotus Notes Template Development/O=Lotus Notes
  4683. PURSAFO
  4684. Fde!f^^
  4685. $ViewMapDataset
  4686. $ViewMapLayout
  4687. WebPageFrameTop
  4688.     Hidden fields: 
  4689.     The Page Title below doesn't appear in a browser.  Use it to identify the
  4690.     page in the Web Pages view, and for the Document name in URLs.
  4691.     Page Title 
  4692. PrivateTitle
  4693.     This form is used for the Top-Level Frame Definition page.  
  4694.     The HTML field computes the HTML for the page.
  4695. <frameset cols = "180, *" scrolling="no" noresize>  <frame src = "/
  4696. /WebPages/Frames+-+Index+Frame?OpenDocument" name="IndexFrame">  <frame src = "/"
  4697. /WebPages/Frames+-+Initial+Content+Frame?OpenDocument" name="ContentsFrame"> </frameset>"
  4698.     1S2S6S9S10S11S12S16S19S20S
  4699. O=Lotus Notes
  4700. O=Lotus Notes
  4701. PURSAFO
  4702. |.:#U
  4703. O=Lotus Notes
  4704. CN=Lotus Notes Template Development/O=Lotus Notes
  4705. PURSAFO
  4706. Fde!f^^
  4707. $TITLE
  4708. $FormUsers
  4709. $Info
  4710. $WebFlags
  4711. $$Script_O
  4712. $$ScriptName
  4713. $Body
  4714. &Arial
  4715.  OutputSubmit
  4716. Your Registration Request Has Been Submitted
  4717.     You will receive an e-mail notification when the system administrator has reviewed your request.
  4718.     This is the contact information you provided: 
  4719.     Full name:
  4720. ContactName
  4721.     Email address:
  4722. EMail
  4723. EMail[<SIZE=30 MAXLENGTH=70>]
  4724.     Phone number:
  4725. Phone
  4726.     Comments:
  4727. Comments
  4728.     This is the information in the certificate you submitted:
  4729.     Certificate Subject
  4730.     Certificate Issuer
  4731.     Distinguished Name
  4732.     Common name:
  4733. CommonName
  4734. CommonName[<SIZE=30 MAXLENGTH=30>]
  4735. IssuerCommonName
  4736. IssuerCommonName[<SIZE=30 MAXLENGTH=30>]
  4737.     Organization:
  4738. Org[<SIZE=30 MAXLENGTH=30>]
  4739. IssuerOrg
  4740. IssuerOrg[<SIZE=30 MAXLENGTH=30>]
  4741.     Organizational unit:
  4742. OrgUnit
  4743. OrgUnit
  4744. IssuerOrgUnit
  4745. IssuerOrgUnit
  4746.     City or locality:
  4747. Locality
  4748. Locality[<SIZE=30 MAXLENGTH=70>]
  4749. IssuerLocality
  4750. IssuerLocality[<SIZE=30 MAXLENGTH=70>]
  4751.     State or province:
  4752. State
  4753. State
  4754. IssuerState
  4755. IssuerState
  4756.     Country:
  4757. Country
  4758. Country
  4759. IssuerCountry
  4760. IssuerCountry
  4761.     Validity Dates
  4762.     Start:
  4763. ValidBegDate
  4764. ValidBegDate
  4765.     End:
  4766. ValidEndDate
  4767. ValidEndDate
  4768. O=Lotus Notes
  4769. O=Lotus Notes
  4770. PURSAFO
  4771. |.:#U
  4772. O=Lotus Notes
  4773. CN=Lotus Notes Template Development/O=Lotus Notes
  4774. PURSAFO
  4775. Fde!f^^
  4776. 0|6rx
  4777. Untitled
  4778. Untitled2
  4779. ValidFrom
  4780. ValidTo
  4781. $TITLE
  4782. $Info
  4783. $$ScriptName
  4784. $Body
  4785. Register a Browser Certificate
  4786. &Arial
  4787.  CertSubmit
  4788. Register a Browser Certificate
  4789.     Use this form to submit a request to register your browser certificate in the Address book.  Your request will be submitted to the system administrator for approval.
  4790.     [<br>]Contact Information:
  4791.     Provide the following information in case the system administrator needs to contact you.
  4792.     Full name:
  4793. size = 50
  4794. ContactName
  4795.     E-mail address:
  4796. size = 50
  4797. EMail
  4798. EMail[<SIZE=30 MAXLENGTH=70>]
  4799.     Phone number:
  4800. size = 50
  4801. Phone
  4802.     Comments:
  4803. size = 50
  4804. Comments
  4805.     Submit Certificate
  4806. [CertAppDesigner]
  4807.     1S6S7S
  4808.     Hidden fields:
  4809. RequestType
  4810. /OutputSubmit?RequestCert&SubmitCert&TranslateForm=CertSubmitTranslation"
  4811.     1S2S6S9S10SRequestAction
  4812. O=Lotus Notes
  4813. O=Lotus Notes
  4814. PURSAFO
  4815. |.:#U
  4816. O=Lotus Notes
  4817. CN=Lotus Notes Template Development/O=Lotus Notes
  4818. PURSAFO
  4819. Fde!f^^
  4820. $TITLE
  4821. $Info
  4822. $WindowTitle
  4823. $$ScriptName
  4824. $Body
  4825.  CertSubmitTranslation
  4826. Supplied by user:
  4827. ContactName
  4828. EMail
  4829. EMail[<SIZE=30 MAXLENGTH=70>]
  4830. Phone
  4831. Comments
  4832. The certificate itself:
  4833. Certificate
  4834. Cracked from the cert:
  4835. CommonName
  4836. CommonName[<SIZE=30 MAXLENGTH=30>]
  4837. Org[<SIZE=30 MAXLENGTH=30>]
  4838. OrgUnit
  4839. Locality
  4840. Locality[<SIZE=30 MAXLENGTH=70>]
  4841. State
  4842. Country
  4843. Country
  4844. CommonName
  4845. IssuerCommonName[<SIZE=30 MAXLENGTH=30>]
  4846. IssuerOrg[<SIZE=30 MAXLENGTH=30>]
  4847. IssuerOrgUnit
  4848. Locality
  4849. IssuerLocality[<SIZE=30 MAXLENGTH=70>]
  4850. IssuerState
  4851. Country
  4852. IssuerCountry
  4853. ValidBegDate
  4854. ValidEndDate
  4855. Control info:
  4856. RequestType
  4857. MSNSCP
  4858. O=Lotus Notes
  4859. O=Lotus Notes
  4860. PURSAFO
  4861. |.:#U
  4862. O=Lotus Notes
  4863. CN=Lotus Notes Template Development/O=Lotus Notes
  4864. PURSAFO
  4865. Fde!f^^
  4866. Untitled
  4867. Untitled2
  4868. ValidFrom
  4869. ValidTo
  4870. $TITLE
  4871. $Info
  4872. $$Script_O
  4873. $$ScriptName
  4874. $Body
  4875.  CertRequestTranslation
  4876. Supplied by user:
  4877. ContactName
  4878. EMail
  4879. EMail[<SIZE=30 MAXLENGTH=70>]
  4880. Phone
  4881. Comments
  4882. The certificate request itself:
  4883. Certificate
  4884. Cracked from the certificate request:
  4885. CommonName
  4886. CommonName[<SIZE=30 MAXLENGTH=30>]
  4887. Org[<SIZE=30 MAXLENGTH=30>]
  4888. OrgUnit
  4889. Locality
  4890. Locality[<SIZE=30 MAXLENGTH=70>]
  4891. State
  4892. Country
  4893. Country
  4894. Control info:
  4895. RequestType
  4896. MSNSCP
  4897. O=Lotus Notes
  4898. O=Lotus Notes
  4899. PURSAFO
  4900. |.:#U
  4901. O=Lotus Notes
  4902. CN=Lotus Notes Template Development/O=Lotus Notes
  4903. PURSAFO
  4904. Fde!f^^
  4905. Untitled
  4906. Untitled2
  4907. ValidFrom
  4908. ValidTo
  4909. ValidBegDate
  4910. ValidEndDate
  4911. $TITLE
  4912. $Info
  4913. $$Script_O
  4914. $$ScriptName
  4915. $Body
  4916. [CAPrivlegedUser]Key Ring Administration|Keyring Administration~
  4917. CatagoriesEntryLabelTempIsRoot$Conflict$REF
  4918. CertificateInformation
  4919.     3S4S
  4920. Catagories
  4921. CatagoriesEntryLabelCertificate Entry LabelTempIsRootTrusted Root&
  4922. 538Arial
  4923. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#################
  4924. MailCertSubmitAcceptedCD
  4925. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#######################################################
  4926. MailCertRequestDeniedCD
  4927. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes################################################
  4928. MailCertSubmitDeniedCD
  4929. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################################################
  4930. MailCertRequestApprovedCD
  4931. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes######################################################
  4932. DlgConfirmCreateSelfRootDlgConfirmCreateSelfRootC
  4933. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes######################################################
  4934. ServerAppStepsServerAppSteps[CAPrivlegedUser]CD
  4935. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes########################
  4936. WebPageFrameInitialContent[CertAppDesigner]
  4937. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes############################
  4938. Certificate InformationCertificateInformation
  4939. [CAPrivlegedUser][CAPrivlegedUser]C
  4940. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#############
  4941. DlgAlreadyHaveCAKey1CD
  4942. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#################
  4943. ##########################################################
  4944. CertificateInformation
  4945. Categori_zeB
  4946. _Edit Document
  4947. Send Docu_ment
  4948. _Forward
  4949. _Move To Folder...
  4950. _Remove From Folderr
  4951. Display CA Key Ring
  4952. '++LotusScript Development Environment:2:5:(Options):0:74
  4953. Use "CertLib" ' CA: has overlap with Utils
  4954. '++LotusScript Development Environment:2:5:(Forward):0:1
  4955. Declare Sub Click(Source As Button)
  4956. '++LotusScript Development Environment:2:5:(Declarations):0:10
  4957. Declare Function ProcessSecurityCmd Lib "_dmsecadm" (Byval cmdName As String,_
  4958. Byval cmdArgs As String, Byval OutBuf As String, Byval szOutBuf As Integer) As Integer
  4959. '++LotusScript Development Environment:2:2:BindEvents:1:129
  4960. Private Sub BindEvents(Byval Objectname_ As String)
  4961.      Static Source As BUTTON
  4962.      Set Source = Bind(Objectname_)
  4963.      On Event Click From Source Call Click
  4964. End Sub
  4965. '++LotusScript Development Environment:2:2:Click:1:12
  4966. Sub Click(Source As Button)
  4967.      
  4968.      Dim linklist As Variant
  4969.      Dim Buf As String * 500
  4970.      Dim CmdArgs As String
  4971.      
  4972.      Dim workspace As New NotesUIWorkspace
  4973.      Dim view As NotesView
  4974.      Dim sess As New NotesSession
  4975.      Dim db As NotesDatabase
  4976.      Dim doc As NotesDocument
  4977.      Dim lastdoc As NotesDocument
  4978.      Dim subjItem As NotesItem
  4979.      Dim IssItem As NotesItem
  4980.      
  4981.      Set db = sess.CurrentDatabase ' CA: moved
  4982.      
  4983.      filename$ = FixFileName("~entry.tmp")
  4984.      
  4985.      Call NukeIt(filename$)
  4986.      
  4987.      ' CA: use kyr name from profile if available
  4988.      Dim prof As NotesDocument
  4989.      Set prof = db.GetProfileDocument("CAProfile")
  4990.      KeyRingFileName$ = prof.CAKeyFile(0)
  4991.      
  4992.      CACert$ = GetString(ids_CACert)
  4993.      
  4994.      If KeyRingFileName$ = "" Then KeyRingFileName$ = Inputbox( GetString(ids_KeyFilePrompt),GetString(ids_KeyFileTitle))
  4995.      If KeyRingFileName$ = "" Then
  4996.           Messagebox GetString(err_NoKyr)
  4997.           Exit Sub
  4998.      End If
  4999.      Password$ = Inputbox$( GetString1(ids_PasswordPrompt, KeyRingFileName$), GetString(ids_PasswordTitle))
  5000.      If Password$ = "" Then
  5001.           Messagebox GetString(err_NoKyrPwd)
  5002.           Exit Sub
  5003.      End If
  5004.      CmdArgs = ""
  5005.      CmdArgs = CmdArgs & "Password=" & Password$ & ";"
  5006.      CmdArgs = CmdArgs & "KeyFile=" & FixFileName( KeyRingFileName$ ) & ";"
  5007.      CmdArgs = CmdArgs & "ShowPrivateKey;"
  5008.      CmdArgs = CmdArgs & "EntriesFile=" & filename$
  5009.      
  5010.      rc% = ProcessSecurityCmd( "GetEntries", CmdArgs, Buf, 500 )
  5011.      
  5012.      TrimBuf$ = Left$(Buf,Instr(Buf,Chr$(0))-1)
  5013.      
  5014.      If rc% <> 0 Then
  5015.           Messagebox TrimBuf$, 48, GetString(ids_Error)
  5016.           Exit Sub
  5017.      End If
  5018.      
  5019.      Set view = db.GetView( strKeyAdminView )
  5020.      
  5021.      Set doc = view.GetFirstDocument
  5022.      If Not doc Is  Nothing Then
  5023.           Set lastdoc = view.GetLastDocument
  5024.           Do  While 1
  5025.                Set doc = view.GetFirstDocument
  5026.                If doc.universalid = lastdoc.universalid Then
  5027.                     Call doc.Remove( True )
  5028.                     Exit Do
  5029.                End If
  5030.                Call doc.remove( True )
  5031.           Loop
  5032.      End If
  5033.      
  5034.      linklist = ReadFromFile(filename$)
  5035.      Call NukeIt(filename$)
  5036.      
  5037.      incr =0
  5038.      Forall k In linklist
  5039.           If Left$ (k, 11) = "EntryLabel:" Then
  5040.                Set doc = New NotesDocument( db )
  5041.                doc.EntryLabel = Right$(k, (Len(k)-12) )
  5042.                doc.Form = strCertInfoForm
  5043.                doc.Catagories = "Certification Authorities"
  5044.                
  5045.                doc.TempKeyFileName = FixFileName(KeyRingFileName$)
  5046.                doc.SubjOrgUnit = ""
  5047.                doc.IssOrgUnit = ""
  5048.                Set subjItem = doc.GetFirstItem( "SubjOrgUnit" )
  5049.                Set issItem = doc.GetFirstItem( "IssOrgUnit" )
  5050.           End If
  5051.           
  5052.           If Left$( k, 11)  = "SubjectOrg:" Then doc.SubjOrganization = Right$(k, (Len(k)-12) )
  5053.           If Left$( k, 18)  = "SubjectCommonName:" Then doc.SubjCommonName = Right$(k, (Len(k)-19) )
  5054.           If Left$( k, 15)  = "SubjectOrgUnit:" Then Call subjItem.AppendToTextList( Right$(k, (Len(k)-16) )  )
  5055.           If Left$( k, 12)  = "SubjectCity:" Then doc.SubjCity = Right$(k, (Len(k)-13) )
  5056.           If Left$( k, 13)  = "SubjectState:" Then doc.SubjState = Right$(k, (Len(k)-14) )
  5057.           If Left$( k, 15)  = "SubjectZipCode:" Then doc.SubjZipCode = Right$(k, (Len(k)-16) )
  5058.           If Left$( k, 15)  = "SubjectCountry:" Then doc.SubjCountry = Right$(k, (Len(k)-16) )
  5059.           
  5060.           If Left$( k, 10)  = "IssuerOrg:" Then doc.IssOrganization = Right$(k, (Len(k)-11) )
  5061.           If Left$( k, 17)  = "IssuerCommonName:" Then doc.IssCommonName = Right$(k, (Len(k)-18) )
  5062.           If Left$( k, 14)  = "IssuerOrgUnit:" Then Call issItem.AppendToTextList( Right$(k, (Len(k)-15) ) )
  5063.           If Left$( k, 11)  = "IssuerCity:" Then doc.IssCity = Right$(k, (Len(k)-12) )
  5064.           If Left$( k, 12)  = "IssuerState:" Then doc.IssState = Right$(k, (Len(k)-13) )
  5065.           If Left$( k, 14)  = "IssuerZipCode:" Then doc.IssZipCode = Right$(k, (Len(k)-15) )
  5066.           If Left$( k, 14)  = "IssuerCountry:" Then doc.IssCountry = Right$(k, (Len(k)-15) )
  5067.           If Left$( k, 10)  = "StartDate:" Then doc.CertStartDate = Right$(k, (Len(k)-10) )
  5068.           If Left$( k, 8)    = "EndDate:" Then doc.CertEndDate = Right$(k, (Len(k)-8) )
  5069.           
  5070.           If (Left$ (k, 12) = "TrustedRoot:") Then
  5071.                On Error Resume Next
  5072.                ' CA: different name here
  5073.                If linklist(Cint(Listtag(k)) + 1) =  "PrivateKey" Then doc.Catagories = CACert$
  5074.                If linklist(Cint(Listtag(k)) + 1) =  "PrivateKey" Then doc.HideSiteCert = "1"
  5075.                If linklist(Cint(Listtag(k)) + 1) <> "PrivateKey" Then doc.HideSiteCert = "0"    
  5076.                On Error Goto 0
  5077.                doc.TempIsRoot = Right$(k, (Len(k)-13) )
  5078.                ' CA: Save only if it's the one we want
  5079.                If doc.Catagories(0) = CACert$ Then Call doc.save (False, False)
  5080.                incr = incr + 1
  5081.           End If
  5082.           
  5083.      End Forall
  5084.      
  5085.      Call workspace.ViewRefresh
  5086.      
  5087. End Sub
  5088. Change CA Key Ring Password
  5089. '++LotusScript Development Environment:2:5:(Options):0:74
  5090. Use "CertLib" 
  5091. '++LotusScript Development Environment:2:5:(Forward):0:1
  5092. Declare Sub Click(Source As Button)
  5093. '++LotusScript Development Environment:2:5:(Declarations):0:10
  5094. Declare Function ProcessSecurityCmd Lib "_dmsecadm" (Byval cmdName As String,_
  5095. Byval cmdArgs As String, Byval OutBuf As String, Byval szOutBuf As Integer) As Integer
  5096. '++LotusScript Development Environment:2:2:BindEvents:1:129
  5097. Private Sub BindEvents(Byval Objectname_ As String)
  5098.      Static Source As BUTTON
  5099.      Set Source = Bind(Objectname_)
  5100.      On Event Click From Source Call Click
  5101. End Sub
  5102. '++LotusScript Development Environment:2:2:Click:1:12
  5103. Sub Click(Source As Button)
  5104.      Dim Buf As String * 500
  5105.      Dim CmdArgs As String
  5106.      
  5107.      ' CA: use kyr name from profile if available
  5108.      Dim sess As New NotesSession
  5109.      Dim db As NotesDatabase
  5110.      Set db = sess.CurrentDatabase ' CA: moved
  5111.      Dim prof As NotesDocument
  5112.      Set prof = db.GetProfileDocument("CAProfile")
  5113.      KeyRingFileName$ = prof.CAKeyFile(0)
  5114.      
  5115.      If KeyRingFileName$ = "" Then KeyRingFileName$ = Inputbox( GetString(ids_KeyFilePrompt) )
  5116.      If KeyRingFileName$ = "" Then
  5117.           Messagebox GetString(err_NoKyr)
  5118.           Exit Sub
  5119.      End If
  5120.      KeyRingFileName$ = FixFileName(KeyRingFileName$)
  5121.      Password$ = Inputbox(GetString(ids_OldPasswordPrompt))
  5122.      If Password$ = "" Then
  5123.           Messagebox GetString(err_NoKyrPwd)
  5124.           Exit Sub
  5125.      End If
  5126.      NewPassword$ = Inputbox(GetString(ids_NewPasswordPrompt))
  5127.      If NewPassword$ = "" Then
  5128.           Messagebox GetString(err_NoNewPwd)
  5129.           Exit Sub
  5130.      End If
  5131.      
  5132.      CmdArgs = ""
  5133.      CmdArgs = "KeyFile=" & KeyRingFileName$ & ";" & "Password=" & Password$ & ";" & "NewPassword=" & NewPassword$
  5134.      
  5135.      If dbg Then Messagebox cmdArgs
  5136.      rc% = ProcessSecurityCmd( "ChangePassword", CmdArgs, Buf, 500 )
  5137.      
  5138.      TrimBuf$ = Left$(Buf,Instr(Buf,Chr$(0))-1)
  5139.      
  5140.      If rc% = 0 Then
  5141.           Messagebox GetString(ids_PasswordChanged)
  5142.      Else
  5143.           Messagebox TrimBuf$, 48, GetString(ids_Error)
  5144.           Exit Sub
  5145.      End If
  5146. End Sub
  5147. Clear View'++LotusScript Development Environment:2:5:(Options):0:66
  5148. '++LotusScript Development Environment:2:5:(Forward):0:1
  5149. Declare Sub Click(Source As Button)
  5150. '++LotusScript Development Environment:2:5:(Declarations):0:2
  5151. '++LotusScript Development Environment:2:2:BindEvents:1:129
  5152. Private Sub BindEvents(Byval Objectname_ As String)
  5153.      Static Source As BUTTON
  5154.      Set Source = Bind(Objectname_)
  5155.      On Event Click From Source Call Click
  5156. End Sub
  5157. '++LotusScript Development Environment:2:2:Click:1:12
  5158. Sub Click(Source As Button)
  5159.      
  5160.      Dim workspace As New NotesUIWorkspace
  5161.      Dim view As NotesView
  5162.      Dim sess As New NotesSession
  5163.      Dim db As NotesDatabase
  5164.      Dim doc As NotesDocument
  5165.      Dim lastdoc As NotesDocument
  5166.      
  5167.      Set db = sess.CurrentDatabase
  5168.      Set view = db.GetView( "Keyring Administration" )
  5169.      
  5170.      Set doc = view.GetFirstDocument
  5171.      If Not doc Is  Nothing Then
  5172.           Set lastdoc = view.GetLastDocument
  5173.           Do  While 1
  5174.                Set doc = view.GetFirstDocument
  5175.                If doc.universalid = lastdoc.universalid Then
  5176.                     Call doc.Remove( True )
  5177.                     Exit Do
  5178.                End If
  5179.                Call doc.remove( True )
  5180.           Loop
  5181.      End If
  5182.      Call workspace.ViewRefresh
  5183. End Sub
  5184. Main Menug4
  5185. CASetup
  5186.     1S4S6S
  5187. H    H    h    8
  5188. ~x    #)
  5189. O=Lotus Notes
  5190. O=Lotus Notes
  5191. PURSAFO
  5192. |.:#U
  5193. O=Lotus Notes
  5194. CN=Lotus Notes Template Development/O=Lotus Notes
  5195. PURSAFO
  5196. Fde!f^^
  5197. $Readers
  5198. $TITLE
  5199. $Index
  5200. $Formula
  5201. $FormulaClass
  5202. $SelQuery
  5203. $ViewFormat
  5204. $Comment
  5205. $ACTIONS
  5206. $SCRIPTOBJ_6
  5207. $SCRIPTOBJ_7
  5208. $SCRIPTOBJ_8
  5209. $ViewGlobalScript_O
  5210. 09/09/97 05:20:49 PM Michael Decoteau/Iris updated OtherDomainServers
  5211. 09/09/97 05:20:26 PM Michael Decoteau/Iris updated LocalDomainServers
  5212. 07/21/97 06:00:23 PM Michael Decoteau/Iris deleted Michael Decoteau/Iris
  5213. 07/21/97 06:00:17 PM Michael Decoteau/Iris deleted Andrew Wharton/Iris
  5214. 07/21/97 06:00:16 PM Michael Decoteau/Iris updated -Default-
  5215. 07/13/97 01:54:58 PM Michael Decoteau/Iris deleted role CertAppDesigner
  5216. 07/11/97 04:45:11 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5217. 07/11/97 03:58:16 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5218. 07/11/97 03:50:52 PM Michael Decoteau/Iris updated -Default-
  5219. 07/11/97 03:50:45 PM Michael Decoteau/Iris updated -Default-
  5220. 07/11/97 03:42:53 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5221. 07/11/97 03:41:16 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5222. 07/11/97 03:40:11 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5223. 07/11/97 03:31:15 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5224. 07/11/97 03:30:53 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5225. 07/11/97 03:30:48 PM Michael Decoteau/Iris updated -Default-
  5226. 07/11/97 03:30:25 PM Michael Decoteau/Iris updated -Default-
  5227. 07/11/97 03:23:10 PM Michael Decoteau/Iris updated Michael Decoteau/Iris
  5228. 07/11/97 02:58:57 PM Michael Decoteau/Iris updated [-Default-]
  5229. 07/11/97 02:22:41 PM Michael Decoteau/Iris updated role CertAppDesigner
  5230. ertAppDesigner
  5231. CAPrivlegedUser
  5232. -Default-
  5233. LocalDomainServers
  5234. OtherDomainServers
  5235. au9 :3s
  5236. [-Default-]
  5237. [LocalDomainServers]
  5238. [OtherDomainServers]
  5239. Times New Roman
  5240. MailCertSubmitAccepted
  5241. SubmitMethod
  5242.     1S2S
  5243. $HideMailHeader
  5244.     0S0E
  5245. SendTo}
  5246.     0S0E
  5247. SendTo^
  5248. No names found to send mail.{
  5249.     1S6S7S8S9S11S16S
  5250. SendToList of primary people to send memo.
  5251. From:
  5252. Subject:
  5253. Your Certificate Request
  5254. Subject
  5255. Your client certificate has been accepted and submitted to the server's Address book.
  5256.     Note:  This form is not currently used; instead we use @MailSend in a function attached to the Accept button of the form Submitted Certificate Approval.  The contents of the acceptance email may be customized there.
  5257. O=Lotus Notes
  5258. O=Lotus Notes
  5259. PURSAFO
  5260. |.:#U
  5261. O=Lotus Notes
  5262. CN=Lotus Notes Template Development/O=Lotus Notes
  5263. PURSAFO
  5264. Fde!f^^
  5265. $TITLE
  5266. $Info
  5267. $$ScriptName
  5268. $Body
  5269. MailCertRequestDenied
  5270. SubmitMethod
  5271.     1S2S
  5272. $HideMailHeader
  5273.     0S0E
  5274. SendTo}
  5275.     0S0E
  5276. SendTo^
  5277. No names found to send mail.{
  5278.     1S6S7S8S9S11S16S
  5279. SendToList of primary people to send memo.
  5280.     From:
  5281.     Subject:
  5282. Your Certificate Request
  5283. Subject
  5284.     Your certificate request has been denied for the following reason:
  5285. O=Lotus Notes
  5286. O=Lotus Notes
  5287. PURSAFO
  5288. |.:#U
  5289. O=Lotus Notes
  5290. CN=Lotus Notes Template Development/O=Lotus Notes
  5291. PURSAFO
  5292. Fde!f^^
  5293. $TITLE
  5294. $Info
  5295. $$Script_O
  5296. $$ScriptName
  5297. $Body
  5298. MailCertRequestApproved
  5299. SubmitMethod
  5300.     1S2S
  5301. $HideMailHeader
  5302.     0S0E
  5303. SendTo}
  5304.     0S0E
  5305. SendTo^
  5306. No names found to send mail.{
  5307.     1S6S7S8S9S11S16S
  5308. SendToList of primary people to send memo.
  5309.     From:
  5310.     Subject:
  5311. Your Certificate Request
  5312. Subject
  5313.     Your certificate request has been approved, and can be picked up at the following URL:
  5314. O=Lotus Notes
  5315. O=Lotus Notes
  5316. PURSAFO
  5317. |.:#U
  5318. O=Lotus Notes
  5319. CN=Lotus Notes Template Development/O=Lotus Notes
  5320. PURSAFO
  5321. Fde!f^^
  5322. $TITLE
  5323. $Info
  5324. $$ScriptName
  5325. $Body
  5326. Keyring Created
  5327.  DlgConfirmCreateSelfRoot
  5328.     Your Certificate Authority key ring has been created.
  5329.     Key ring file name:
  5330. KeyRingFileName
  5331. KeyringFileName
  5332.     Distinguished Name:
  5333.     Common name:
  5334. CommonName
  5335. CommonName
  5336. Organization
  5337. Organization
  5338.     Organization:
  5339.     Organizational unit:
  5340. OrganizationalUnit
  5341. OrganizationalUnit
  5342.     State:
  5343.     City:
  5344. StateProvince
  5345. StateProvince
  5346. Locality
  5347. Locality
  5348.     Next Step:
  5349.     You can now sign certificates with the Certificate Authority key ring.  The next step is to create the server key ring in order to run the Certificate Authority server over SSL.
  5350.     This certificate is valid from:
  5351. StartDate
  5352. ValidDays
  5353.     2S6S15SEndDate
  5354.     Country:
  5355. Country
  5356. Country
  5357. O=Lotus Notes
  5358. O=Lotus Notes
  5359. PURSAFO
  5360. |.:#U
  5361. O=Lotus Notes
  5362. CN=Lotus Notes Template Development/O=Lotus Notes
  5363. PURSAFO
  5364. Fde!f^^
  5365. $TITLE
  5366. $Info
  5367. $WindowTitle
  5368. $$ScriptName
  5369. EndDate
  5370. $Body
  5371. Create Server Key Ring & Certificates
  5372.  ServerAppSteps
  5373. SaveOptions
  5374. Create Server Key Ring & Certificates
  5375.     It is recommended that you set up the Certificate Authority server to run SSL. In order to do this, it is necessary to create a key ring for the server using the Server Certificate Administration application.
  5376.     Note: 
  5377.     The server key ring should not be confused with the Certificate Authority key ring.  The server key ring is needed to provide access to the server over SSL.  The Certificate Authority key ring is used to sign certificate requests.
  5378.     Quick Help  
  5379.     Below is a brief description of the steps required for setting up the server key ring on the Certificate Authority server.  The steps require going back and forth between the Certificate Authority application and the Server Certificate Administration application.  See Domino Help or the Domino User's Guide for more information on setting up the server key ring for the Certificate Authority server.
  5380.     - In the Server Certificate Administration application, choose "Create Keyring".
  5381.       Complete the form and submit it.
  5382.     - In the Certificate Authority application, choose "Pick Up Certificate Authority Certificate".  
  5383.       The form provides a copy of the   Certificate Authority Trusted Root certificate in PKCS format.  
  5384.       Copy the certificate to the clipboard. 
  5385.     - In the Server Certificate Administration application, choose "Install Trusted Root Certificate Into Key Ring".  
  5386.       Paste the Certificate Authority certificate into this form and submit the form.
  5387.     - In the Server Certificate Administration application, choose "Create Certificate Request".  
  5388.       Fill in and submit the form.  In the confirmation dialog that pops up, the certificate request is displayed in 
  5389.       PKCS format.  Copy the certificate to the clipboard.
  5390.     - In the Certificate Authority application, choose "Submit Server Certificate Request".  
  5391.       Paste the certificate from the clipboard into the field provided, complete the remaining fields, 
  5392.       and submit the form. 
  5393.     - In the Certificate Authority application, choose "Certificate Requests" to see the pending certificate requests:
  5394.          - Open the request you created, and approve it.  
  5395.          - Choose the "View Approved Certificate Requests" action button to display the approved request.  
  5396.          - Open the approved request, and copy the PKCS-encoded certificate to the clipboard.
  5397.     - In the Server Certificate Administration application, choose "Install Certificate Into Key Ring".  
  5398.       Paste the certificate from the clipboard into the provided field, complete the remaining fields,
  5399.       and submit the form.
  5400. '++LotusScript Development Environment:2:5:(Options):0:66
  5401. '++LotusScript Development Environment:2:5:(Forward):0:1
  5402. Declare Sub Click(Source As Button)
  5403. '++LotusScript Development Environment:2:5:(Declarations):0:2
  5404. '++LotusScript Development Environment:2:2:BindEvents:1:129
  5405. Private Sub BindEvents(Byval Objectname_ As String)
  5406.      Static Source As BUTTON
  5407.      Set Source = Bind(Objectname_)
  5408.      On Event Click From Source Call Click
  5409. End Sub
  5410. '++LotusScript Development Environment:2:2:Click:1:12
  5411. Sub Click(Source As Button)
  5412.      Dim wsp As New notesuiworkspace
  5413.      Dim uidoc As notesuidocument
  5414.      Set uidoc = wsp.CurrentDocument
  5415.      Call uidoc.Close
  5416. End Sub
  5417. New Button
  5418. Need a newer version of Notes to execute this button.
  5419.     0S0E
  5420.        Close   
  5421. O=Lotus Notes
  5422. O=Lotus Notes
  5423. PURSAFO
  5424. |.:#U
  5425. O=Lotus Notes
  5426. CN=Lotus Notes Template Development/O=Lotus Notes
  5427. PURSAFO
  5428. Fde!f^^
  5429. $TITLE
  5430. $FormUsers
  5431. $Info
  5432. $WindowTitle
  5433. $$Script_O
  5434. $$ScriptName
  5435. $Body
  5436. WebPageFrameInitialContent
  5437.     Hidden fields: 
  5438.     The Page Title below doesn't appear in a browser.  Use it to identify the
  5439.     page in the Web Pages view, and for the Document name in URLs.
  5440.     Page Title 
  5441. PrivateTitle
  5442.     This form is used for the Initial Content frame.  
  5443. '/'/'
  5444. '*'/'*
  5445. !'/!%
  5446. %'%/'%
  5447. '/%*/'
  5448. /'%'/%
  5449. '/'!'!'
  5450. '!'!'
  5451. !'!'!
  5452. '/!/!
  5453. !    '-'-!'!'!
  5454. '!'!'!
  5455. /'/'/'!/
  5456. ('('-'-'(!('!('-
  5457. '!/!'!'
  5458. -!'-('
  5459. '(!('('(
  5460. '    !'('!'!'!
  5461. '!/!/'!'/'/'!
  5462. (!'!-'(-('(!('('
  5463. !/!/!'
  5464. !    '!'(!'!('
  5465. ('(!(!(
  5466. %'%'%
  5467. !/'!'!'
  5468. '-!-(!'(-(!(
  5469. '-(!('('!'('('(!'!
  5470. '%('('%(
  5471. %&'%&'
  5472. '-'-'
  5473. '(!(!
  5474. '-'!-
  5475. -(!'(!'('-!-
  5476. (!('(!'!('('
  5477. '&'&'&
  5478. '-'!'-
  5479. -'('('!(-!
  5480. !(!('
  5481. !(!('('(
  5482. !/!'!-/'
  5483. -!-!-'(-
  5484. -!(-!(-
  5485. (!(!(!'('('(!('('
  5486. %('('('%
  5487. '&/&'%
  5488. '!-'-(
  5489. !('(!
  5490. !(!(!
  5491. !(!(!('(!'('(!'
  5492. !'-!'-'!
  5493. -    !(!(!(!-(
  5494. !(!(-
  5495. (-(!(!'(!('('(!('(!('
  5496. %'&'&'%&
  5497. (!(!(!
  5498. !(-!(-(!
  5499. !(!(!
  5500. (    !(!(!(!(!
  5501. '!('('!'
  5502. !    -!'7!'-!-
  5503. -(!(!-(!-(!-(!
  5504. !-!-(-(-(!-(!(!('('(!
  5505. '!'('(
  5506. /-!/!/-!-!
  5507. -(!(-
  5508. !(-!(-(!
  5509. !(!(!
  5510. !(!(!(!(!(
  5511. (!('!'
  5512. !-(!-!(!
  5513. !(-(!-(!-(!-(-
  5514. -(!(-!-!
  5515. -(!(!(-!(!(!('(!('
  5516. ('(!'
  5517. '('(%
  5518. %&'&'*
  5519. '-!-!
  5520. -!(!(!-
  5521. -(!-(!(-
  5522. !(-(!
  5523. -(!(!(!(!('!(!(
  5524. '!('!(
  5525. -(!(-!(-!(
  5526. !(-(-!-!
  5527. (    !-!-(!(-(
  5528. (-(!(!(!(!
  5529. &%&'&'&/%*
  5530. !-!(!
  5531. -(!-(-(-
  5532. -(-!(-(!
  5533. !(!(!
  5534. !(!(!(!(!('!('(
  5535. !(!(!-(!-(!-(!
  5536. -(-(-!-!
  5537. -(-(!(-!(!(-(-(-(!
  5538. '(!'(!'
  5539. !-!(!-(!(! 
  5540. !(-(!
  5541. -(!(!(!(!(
  5542. '!('(!('('(
  5543. !-!-!
  5544.  - -(-(-(-
  5545. !(-(-!(-!(-!(!
  5546. -!(!(-(
  5547. (-(!(!(!(!
  5548. !'!(!(!('(!('
  5549. '('('(
  5550. (!(-(- - -(
  5551. -(-!(-(!
  5552. !(!(!
  5553. !(!(-(!(!(
  5554. (!(!'
  5555. !('('(!('(!'('(%'(
  5556. %'&'&'&
  5557. -!7-!
  5558. !-!-!
  5559. (! -(
  5560. (!(-(-
  5561. (!-(!-(-
  5562. -(!(-!-!
  5563. (-(!(-!(!(-(!(-(-
  5564. ('(!(!(!(!'
  5565. '('('('('(
  5566. '    %'%&
  5567. (-(-(
  5568. (- -(
  5569. (- -( -( -( !(-!(-(-
  5570. !(-(!
  5571. -(!(!(!(!(
  5572. ('(!'
  5573. (    !(!(!('('
  5574. '('('('('(
  5575. !-!- (!(-(
  5576. (-(-(-(-( -
  5577. -(!(-!(-!(
  5578. !(!(-!
  5579. (    !-!-(!(-(
  5580. (-(!(-(!(!
  5581. '!'('('(!(!(!'('
  5582. '('('('('(
  5583. (- -(
  5584. !(!(!
  5585. !(!(-(!(!(
  5586. !(!(!('(!('
  5587. '!(!('('('(%(
  5588. !-!-!-!
  5589. (- -(
  5590. -(!(!-(!-(!-(!
  5591. !(-(!
  5592. -!(-(!(-!(!(-(!(-(-
  5593. (!('('(!('
  5594. !'('('
  5595. '('('('(
  5596. &'%*'%&
  5597. -!- (
  5598. - -(-(
  5599. (-(-(-(
  5600. !(-(!
  5601. -(!(!(!(!(
  5602. '(!(!(!(!(!'
  5603. '('('('(
  5604. '    &'*'
  5605. -!-!-!-
  5606. !    -!(- (
  5607. (- - -(- -(
  5608. (- (- (
  5609. -(-(-!(-!(-!(!
  5610. !(!(-!-!
  5611. -(!(-(
  5612. (-(!(-(!(!
  5613. !'!('(!('('(!
  5614. '('('
  5615. %'%/&%*
  5616. -!7!-!
  5617. -(-!(-(-
  5618. !(!(!
  5619. !(!(-(!(-(
  5620. (!(!'
  5621. !(!(!(!(!(!'
  5622. '('!'
  5623. '('(%(
  5624. &%'*'*
  5625. (-(-(
  5626. ( (- (
  5627. (- - - -(
  5628. (!-(!-(-
  5629. -(-(!
  5630. -!-!(-(!(-!(!(-(!(-(!
  5631. ('('('(!('
  5632. '('('('('(
  5633. '    &'%&
  5634. (- -(- -(
  5635. -(-(-
  5636. !(-!(-(-
  5637. !(-(!
  5638. -(!(!(!(!(-!(!(!'
  5639. !(!(!('(!('!
  5640. '!'('('('('('('(
  5641. ( (-( 
  5642. (- -(
  5643. (-(-(-
  5644. -(!(-!(-!(
  5645. !(!(-!
  5646. -(!(-(
  5647. (-(!(-(!(!
  5648. '!'(!(!(!(!(!
  5649. !(!(!
  5650. !(!(-(!(-(
  5651. !('(!('('(!'
  5652. !-!-!
  5653. (- ( - ( - (
  5654. - -(- -(- - -(-
  5655. (-( -(!(!-(!-(!-(!
  5656. !(-(!
  5657. -!-!(-(!(-!(!(-(!(-(!
  5658. ('(!('(!(!
  5659. '!'(!(!
  5660. &'&'*'
  5661. (- - -(-(- -
  5662. !(-(!
  5663. -(!(!(!(!(-!(!(
  5664. !(!(!(!(!('!
  5665. !'('('('%(
  5666. (- - -(-
  5667. -(-(-!(-!(-!(!
  5668. -(!(-!-!
  5669. -(!(-(
  5670. (-(!(-(!(!
  5671. '!'('('('('(!
  5672. !'!'('
  5673. '('('('
  5674. (-(-(
  5675. (-(-(
  5676. !(!(!
  5677. !(!(-(!(-(
  5678. (!(!'
  5679. !(!(!(!(!('!
  5680. '('('(
  5681. (- - 
  5682. (- -(
  5683. (-( -( 
  5684. (-( -(
  5685. (- (!(!(!
  5686. (-(!(-!(!(-(!(-(!
  5687. (!('(!('('
  5688. '('('('(
  5689. %&/'*
  5690. /7!7-!7!
  5691. - - -(
  5692. !(!-(-(-
  5693. !(-(!
  5694. -(!(!(!(!(-!(!(
  5695. '(!(!(!(!(
  5696. '(!(!'('('('(
  5697. ( (- 
  5698. (-(- - -(
  5699. (-( -(-(-!(-!(
  5700. (- (!(-(-!-!
  5701. (    !-!-(!(-(
  5702. (-(!(-(!(!
  5703. !'!('('('(!('
  5704. !'!'('
  5705. '!('('('('
  5706. (-(- -(
  5707. - (- 
  5708. !(!(!
  5709. !(!(-(!(-(!-(!(!'
  5710. !(!(!(!(!(!'
  5711. (    '(!('(!('
  5712. '('(%('(
  5713. %&'&%*/
  5714. -!-!-
  5715. ( (- 
  5716. (- - - -(
  5717. (!-(!-(-
  5718. -(-(!(-!(!(-(!(-(!
  5719. ('(!('('('
  5720. '!(!('(!'('('
  5721. - (- 
  5722. - -(- - - - -(
  5723. -(!-(-(-
  5724. !(-(!
  5725. -(!(!(!(!(-!(!(
  5726. !(!(!(!(!(!'
  5727. '('('
  5728. '(!(%('(
  5729. ( (-( (-( -
  5730. (-(-!(-!(-!(-
  5731. -(!(!
  5732. (    -!-!(!(-(
  5733. (-(!(-(!(!
  5734. '!'('('(!('(!
  5735. !'!'('
  5736. ('(!('('('('
  5737. -     - (
  5738. ( (- 
  5739. - (-(
  5740. (-(-(
  5741. -(!-(-(-
  5742. !(!(!
  5743. !(!(-(!(-(!-(!(!'
  5744. !(!(!(!(!(!'
  5745. '(!('(!('('(
  5746. ('('(
  5747. - - -
  5748. ( (- ( - (
  5749.  - - - 
  5750. (- -(
  5751. (! (! !(
  5752. !(-(!(-!(!(-(!(-(!
  5753. (!('('('('
  5754. !'(!('(!('(!'(!
  5755. '('('(
  5756.  - ( 
  5757. ( ( (- 
  5758. ( - -(- -(- -(-(
  5759. -(-(-
  5760. !(-(!
  5761. -(!(!(!(!(-!(!(!'
  5762. '(!(!(!(!(!'
  5763. !('!(!('('('(!('
  5764. ('('(
  5765. 7!7-!-!-
  5766. (-( -(!(-!(-!(-!(!
  5767. -(-(!-!-
  5768. -(!(-(
  5769. (-(!(-(!(!
  5770. !'!('(!('(!(!
  5771. !'!'(!(!('(!('('('
  5772. (-(-(-(-
  5773. -( -(
  5774. -(-(-
  5775. -(-!(-(-
  5776. !(!(!
  5777. !(!(-(!(-(!-(!(
  5778. !(!(!(!('('!
  5779. !('('(!('(!('('!('!('('
  5780. %'%&'*
  5781. &- -(
  5782. ( (- (
  5783. - -(- - - - 
  5784. (-(!(-!(!(-(!(-(!
  5785. ('('('('(!
  5786. ('(!(!('(!('(!'('
  5787.  - - 
  5788. - - - -(- -(-(
  5789. -(-(-
  5790. -(-!(-(-
  5791. !(-(!
  5792. -(!(!(!(!(-!(!(
  5793. !(!(!(!(!(!'
  5794. !(!(!('('('('
  5795. !'('('
  5796. ( (-( -
  5797. (-( -(-(-!(
  5798. (-!(!
  5799. !(-(!-!-
  5800. (    !-!-(!(-(
  5801. (-(!(-(!(!
  5802. '!'(!('(!('(!
  5803. !'!'('('(!(!('(!('!
  5804. (!('!(
  5805. (, (- 
  5806. - (-(
  5807. !(!(!
  5808. !(!(-(!(-(!-(!(
  5809. !(!(!(!(!(!'
  5810. !(!(!('('(!('
  5811. %'*'%
  5812.  - -(
  5813.  - - -(- - -(-
  5814.  !( !(!(
  5815. -!-!(-(!(-!(!(-(!(-(!
  5816. '('('('('('
  5817. '(!('('(!(!('(!'!'(!'(!
  5818. '('('(
  5819.  =( -= (= 
  5820. 5( =(
  5821. 5(- =( 
  5822. ( - -(- - - - - -
  5823. !(-(!
  5824. -(!(!(!(!(-!(!(
  5825. !(!(!(!(!(!'
  5826. !(!(!(!('('('
  5827. ('('('(
  5828. %'&'/
  5829. (-(-(
  5830. (-(-!(
  5831. (-!(!
  5832. -(!(!-!-
  5833. !-(!(-(
  5834. (-(!(-(!(!
  5835. ('(!('(!(!
  5836. !'!'('(!('(!('(!(!
  5837. !('('
  5838.  -(-(
  5839. -(-!(-(-
  5840. !(!(!
  5841. !(!(-(!(-(!-(!(!'
  5842. !(!(!(!('('!
  5843. !(!(!(!(!('('
  5844. '(!('!('('('('(
  5845.  -(- - - -(
  5846. (-(!-(!-(
  5847. -!-!(-(!(-!(!(-(!(-(!
  5848. !'!('('('('(!
  5849. ('('('('('(!('!
  5850. (!'('('('(
  5851. = = -5(
  5852. = (=(
  5853. ( (- 
  5854. ( - - - -(-(
  5855. !(-!(-(!
  5856. !(-(!
  5857. -(!(!(!(!(-!(!(
  5858. !(!(!(!(!(!'
  5859. !(!(!(!(!(!('
  5860. !('('('('(
  5861.  -(-(- (-
  5862. -(-(-!(
  5863. (!-(!
  5864. -(-(!
  5865. (!(-(
  5866. (-(!(-(!(!
  5867. '(!('(!('(!
  5868. !'!'(!('(!('('(!('!'!('('(
  5869. %'%'*
  5870.  &(- 
  5871. -( -(
  5872. (- - -(
  5873. !(!(!
  5874. !(!(-(!(-(!-(!(
  5875. !(!(!(!(!(!'
  5876. !(!(!(!(!(!(!
  5877. '(!('
  5878.  ( - (
  5879. - - - -(- -(
  5880. (- (-
  5881. (!-(!-(!
  5882. !(-(!-!-
  5883. -!-!(-(!(-!(!(-(!(-(!
  5884. ('('('('('
  5885. '('('('('(!('('!'!(!'('('
  5886. '('('(%
  5887. - -(- - - -(
  5888. -(-(-
  5889. -(!-(-(-
  5890. !(-(!
  5891. -(!(!(!(!(-!(!(
  5892. !(!(!(!(!(!'
  5893. !(!(!(!('(!(!
  5894. (    '(!(!'('(
  5895. '    %'*'
  5896. (-(- (- (-
  5897. - -(-!(-!(!-(-
  5898. (    !-!-(!(-(
  5899. (-(!(-(!(!
  5900. '('(!('(!(!
  5901. ('(!(!(!('('(!'!'('('(
  5902. (!('('(
  5903. (- -(
  5904. -(!-(-(-
  5905. !(!(!
  5906. !(!(-(!(-(!-(!(
  5907. !(!(!(!('('!
  5908. !(!('(!(!(!(!
  5909. '(!('
  5910. ('(%'(
  5911. %'%'*
  5912.  ( -( 
  5913.  - - - - - -(
  5914. -(!(!-!-
  5915. !-!-(-(!(-!(!(-(!(-(!
  5916. (!('('('(!
  5917. !'!'('('(!('('(!('
  5918. '(!('(!'
  5919. -( - -(- -(-(- -(
  5920. !(-(!
  5921. -(!(!(!(!(-!(!(
  5922. '(!(!(!(!(!'
  5923. !(!(!(!(!(!(!
  5924. '('('
  5925. -(-(-!(
  5926. (-!(!
  5927. !(-(!
  5928. (    -!-!(!(-(
  5929. (-(!(-(!(!
  5930. !'!('('(!('(!
  5931. '(!('('(!('('('
  5932. (!('!('!('('
  5933.  = - 5-
  5934. (- ( 
  5935. (- -(-
  5936. -(-!(-(-
  5937. !(!(!
  5938. !(!(-(!(-(!-(!(
  5939. !(!(!(!(!(!'
  5940. !(!(!(!('(!(!
  5941. (    '('('('(%
  5942.  - - 
  5943.  ( -( -
  5944. (-(- 
  5945. (- -(- (-
  5946. -(-(-!(!-(
  5947. -(-(!-!-
  5948. !-(-(!(-!(!(-(!(-(!
  5949. ('(!('('('
  5950. !'!'('('(!('(!(!(
  5951. '('(!'(!'(!('('
  5952. (- ( - (
  5953.  - -(- -(
  5954. !(!-(!(-
  5955. !(-(!
  5956. -(!(!(!(!(-!(!(
  5957. !(!(!(!(!('!
  5958. !(!('(!(!(!('
  5959. '('('(
  5960. %'*/%*0
  5961. - - ( - ( -( 
  5962. (- -(-
  5963. (!-(-
  5964. (    -!-!(!(-(
  5965. (-(!(-(!(!
  5966. '!'('('('(!(!
  5967. (!(!('('('(!('!'(!('!('('!('('(
  5968. (- ( 
  5969. ( - -
  5970. ( - -(
  5971. (-(- -
  5972. - -(!
  5973. -(!-(-(-
  5974. !(!(!
  5975. !(!(-(!(-(!-(!(
  5976. !(!(!(!(!('!
  5977. '(!(!(!(!(!(!
  5978. '(!('('(
  5979. - - ( -(
  5980. (- - -
  5981. (-!(!-(!
  5982. !(!(!-!-
  5983. -!-!(-(!(-!(!(-(!(-(!
  5984. (!('(!('('
  5985. '(!('('(!('('('@
  5986. ( - -
  5987.  - - -(- -(- 
  5988. !(-(!
  5989. -(!(!(!(!(-!(!(
  5990. '(!(!(!(!(
  5991. !(!(!(!(!(!(!
  5992. '!('(
  5993. - - ( -
  5994. -(-(-!(-!(-!(!
  5995. !(-(!
  5996. (    !-!-(!(-(
  5997. (-(!(-(!(!
  5998. !'!('('('(!('
  5999. !'!'('(!('('(!('(!'!(!('!('
  6000. ( - -
  6001. !(!(!
  6002. !(!(-(!(-(
  6003. (!('!
  6004. !(!(!(!('(!'
  6005. !(!('(!(!(!(!
  6006. '('!('(
  6007. - - - (
  6008. - - ( 
  6009. ( (-( 
  6010. (- -(- - -(-
  6011. (!-(!-(-
  6012. !(!(!-!-
  6013. !-!-(-(!(-!(!(-(!(-(!
  6014. ('(!('('(!
  6015. ('('(!(!('('(
  6016. ('(!'(!'('(!'
  6017. (%'%'/&'/*
  6018. - - - - -
  6019. ( - -
  6020. -(!(!
  6021. !(!-(-(-
  6022. !(-(!
  6023. -(!(!(!(!(!-(!(
  6024. !(!(!(!(!(
  6025. !(!(!(!(!('('
  6026. !('(!('
  6027. - - ( -
  6028.  -( -
  6029. (-(-(-(-
  6030. -(-( -(-(-!(-!(
  6031. (    -!-!(!(-(
  6032. (-(!(-(!(!
  6033. '!'('('(!('('
  6034. ( !'!'(!('('('(!(!(!'('('('('!'!('
  6035. - - -
  6036. ( - -
  6037.  - - 
  6038. -(!-(!(-
  6039. !(!-(!(-
  6040. !(!(!
  6041. !(!(-(!(-(
  6042. !(!(!(!(!(!'
  6043. !(!(!(!(!('('
  6044. (    '(!('(!('
  6045. !7!-7-
  6046. 7!-!-!
  6047. (- -(- -(-(
  6048. !-(! (!(-!-!(!-(!-(-
  6049. !(-(!-!-
  6050. (-(!(-!(!(-(!(-(!
  6051. (!('('('(!
  6052. '('('(!('('('('!(!('(!('
  6053. -( -(- - - -(- -(
  6054. (!(-!(!
  6055. !(-(!
  6056. -(!(!(!(!(-!(!(
  6057. '(!(!(!('(!'
  6058. !(!('(!(!(!('
  6059. '('('('('!('(
  6060. ( (- ( -( -
  6061. (-(-(- -(-(-!(!
  6062. !-!(!-!(!-!-
  6063. -(-!-!
  6064. (    !-!-(!(-(
  6065. (-(!(-(!(!
  6066. !'!('(!(!(!('
  6067. (!(!('('('(!(!'(!(!('(!('('
  6068. %'*'*
  6069. !7!-!
  6070. (- - -(-(-! -(
  6071. (!-(-!-!-(
  6072. -!-(-(
  6073. !(!(!
  6074. !(!(-(!(-(!-(!(!'
  6075. !(!('(!(!(
  6076. '(!(!('('('('
  6077. '('('(!
  6078. (!('(
  6079. ( (-( (
  6080. !(-!(!
  6081. -(-(!(-!(!(-(!(-(!
  6082. ('('(!('('
  6083. '(!('('(!(!('('!(!('(!
  6084. '('('
  6085.  (- -
  6086. (- -(-(-!(-!(!
  6087. -(!(!(!(!(
  6088. (!(!'
  6089. !(!(!(!(!('!
  6090. !(!(!('('(!('
  6091. '(!('(
  6092. !('!('('('(
  6093. !-7!-(
  6094. (-(-(
  6095. -!-!'-!-!-'-'-!-
  6096. !(-(!(!(
  6097. (-(!(-(-(-
  6098. '!'(!('('(!(!
  6099. !'!'('('(!('('(!(!'('(!('
  6100. '('('(%
  6101. -( - 
  6102. - -(- !
  6103. !-!-!(
  6104. !-!-!-!-!-
  6105. !'!-!-!-
  6106. !(!(-(!(!(!-(!('!
  6107. !(!(!(!(!('!
  6108. !(!(!('(!('('
  6109. '('('(!'!('!('(
  6110. -!-!-
  6111. ( (- 
  6112. !-!-!-!-
  6113. !/-/!
  6114. '!'-'(-!(!(!(!(-(!(!(!
  6115. '('('(!('('
  6116. ('(!('(!('('('!(!('(!
  6117. !-7-!
  6118. /'!/!/
  6119. /!/'-
  6120. '/!'-!-
  6121. -!'-!(!-!(!(!(-(!(-!(!(
  6122. !(!('(!(!(
  6123. !(!(!('('(!('
  6124. '(!('(
  6125. (!'('(
  6126. !7!-!
  6127.     -!-!-!-
  6128. -'!-!'!-
  6129. -!(-!
  6130. (    !(!(!(-(!
  6131. (!(!('(!('
  6132. !'!'('('(!('('(!(!'('(!('
  6133. (    '('!('('(
  6134. ( - -(
  6135. "!/-/!'
  6136. 2!'-'
  6137. (!(!(!(
  6138. '(!(!(!('(!'
  6139. !(!('('(!('('
  6140. '('('(!'
  6141. '('(%
  6142. 2!/!-'-!'-'('(!(-(!-
  6143. (!(' 6
  6144. $4!('(!(!('('('!(!
  6145. ('('('(
  6146. (-(!-!-!
  6147. -!-!(!(!
  6148. '(!(2
  6149. '!(!(
  6150. '    /%/'
  6151. -!+2 ('!(!(!
  6152. !+2!(!)
  6153. '(!('(
  6154. '('('
  6155. ",'('(
  6156. !(!(!(
  6157.  (!('(
  6158. 3!(!(!B
  6159. 6$31#
  6160. 4!('('6
  6161. (!('(
  6162. 3!'(!2
  6163. ('!(!(!(
  6164. ('('(!2
  6165. '(!(!B
  6166. B('!(B
  6167. 2!(!(!)
  6168. -!('(
  6169. '!(!(!
  6170. )('('(2
  6171. 2('('6
  6172.  ('('!)
  6173. $2'(!(!'
  6174. ('(!('
  6175. '(!(6
  6176. ('!('!('
  6177. "-!-!
  6178. 21'!'(!-(!
  6179. !(-'('!(!(!
  6180. ,2"'(',)2 '
  6181. '(!('-(,
  6182. !7!7!7-
  6183. !    -!-'(!(!(
  6184. !(!('
  6185. !('('('
  6186. '('(-'(
  6187. '(!'(!
  6188. !'(!'!
  6189. 7!7!7!-
  6190. !(!'('('
  6191. '(!'!('(!(!'(!(!(!('!(!('
  6192. '('(!'
  6193. !-!7!7!7!7!7!7!
  6194. -!7!-
  6195. '!-'!-!(!(!('!('
  6196. !('(!
  6197. '('(!(!('('!('(!('('('('!'-'!-
  6198. /'/'/'
  6199. ('(!(!
  6200. '(!(!(
  6201. ('(!'('(
  6202. !    7!7-!7-!
  6203. -!7!-!
  6204. !'-(!('(
  6205. !('('('('('
  6206. !'!'(!'(!(!'!'-'!
  6207. -'!'-!'!'!/'!/'
  6208.  !(-!-!-!
  6209. -'!'(!(!
  6210. !('!'(!(!(!('(!('('(!('!(
  6211. '    !'-'!'-'!
  6212. -'!'-!(!'('('!(!
  6213. '(!('!('('(!('!'!-'
  6214. !/!/!
  6215. !-!-!-
  6216. -!-7-
  6217. - - (
  6218. (-!-!-!-
  6219. '(-(!(!
  6220. (!'(!(!('!'('!('!'!
  6221. !'!'/'!'/!/'/
  6222. /!/!/'!'-(!'(!('!(!('('
  6223. !('!'
  6224. '!'!'!
  6225. !'!'/'
  6226. '/!/'
  6227. - - -
  6228. -    !-!-!7!
  6229. /'!-'
  6230. '!(!(!
  6231. '(!(!(!'('!
  6232. !'-'!'!'!'!'
  6233. '-!('('(
  6234. ('(!('(
  6235. (!'!'!-!'!
  6236. !    '(!(!(!(!
  6237. (    !(!'!(!'-
  6238. !'!'!/'
  6239. - - (
  6240. ('(!(!('('
  6241. '!'-'
  6242. !    /'/'/'/'
  6243. ( - -
  6244.      - (-(-
  6245. ('('-!(
  6246. - - (
  6247. '(!(-(!(!(!(!'(!
  6248. !-!-7-!
  6249. (- - 
  6250.  ( - -
  6251. (- (-(-
  6252. -!-!-
  6253. -'!'!'!'-(!(
  6254. -!'!'!'/'
  6255. - - -
  6256. '!-!'-!(-(!(!'
  6257. (!'-!'!'-'/!'/'/
  6258. (- - -( (
  6259. /!'/!/
  6260. - - - 
  6261. /!/'-'!-'!'(!(-(
  6262. -!-'-!/'/!'/
  6263.  - - - -
  6264. -!-('!'!'!'-'!'!
  6265. -!-!-
  6266. /!/!-'-
  6267. !'!-(!(!'-'!'!
  6268. '/'/'
  6269. -!-!-!-
  6270. /!/!/!'
  6271. '-!-!-'!'!'!'!
  6272. !/!/!
  6273. -!-!-!
  6274. '!'!-'!'-'-'-'-
  6275. /%'/!/!
  6276. -!-!7-!-!7!-
  6277. !-!-!-!
  6278. -!7!-!7!7-!7
  6279. -!7!-
  6280. !'!'-!-!'-!'-'-'!'/!
  6281. '/!'7
  6282. '!'!'-
  6283. -!'-!'-'!'!/!
  6284. !-!-!
  6285. -/7!/
  6286. -!/!/
  6287. -'!'-!'!'!/!/!'
  6288. '!'!-
  6289. -!-!-!
  6290. !/!'-'
  6291. '!-!-'!-'!/!/'
  6292. '!/!-!'
  6293. /!'/!
  6294. -!'!'!'!/!/'
  6295. /!'/'!'-!
  6296. -!-!-
  6297. !-'!'-'-'!'
  6298. -'!/!'
  6299. !-!-!-
  6300. /!'-!-'!
  6301. -!-'!'!'
  6302. /'/!'!-!
  6303. !-!-!
  6304. -'!'!'-
  6305. !'!'!'-!
  6306. '!'-!-'-!-!-
  6307. -!-!-!
  6308. !-!-!(!-'-!'-
  6309. -!/!/
  6310. '!/!'!'-(!(!
  6311. '/!/!
  6312. -!'('-'(
  6313. !-!-!
  6314. ('(-!-(
  6315. -'!-'!/!/!/
  6316. !'!'!
  6317. /!/!'
  6318. !'!/'!-'
  6319. '-!'-
  6320. '-!(!-!(!(
  6321. -'!-'!'!/!/
  6322. /-!'!/!/'!/!/!
  6323. !'!-!-!-!-!-(!-!(!(-'('(-!'
  6324. /%/!'!'-'!-!
  6325. !-!-!
  6326. /!7!-/-
  6327. -!-!-
  6328. !/!/!/-!-'!'
  6329. '!-!-!-'
  6330. !(!(!-!'-!-'!
  6331. -!-!-
  6332. !-!-!-
  6333. !/!-!'!-!-
  6334. -!'!-!-
  6335. !(!(!(!-
  6336. !-!7!-
  6337. '-'-!/!-'!-'!-
  6338. '-'!-!-'-!
  6339. -    (!-!-!(!(
  6340. !('('
  6341. -!-!-
  6342. -!-!-!
  6343. !    -!-!'-!-!
  6344. !-!'-!-!-(
  6345. !(!(!
  6346. (!('!-
  6347. /%'/'
  6348. -'!-!
  6349. /!/!-/!-!-!
  6350. !-!-!
  6351. !-!-!-!-!-!-!-!
  6352. !-(-(!(-
  6353. !    (!(-!-!'-
  6354. !-!-!(-!
  6355. !-!-(!(!-!
  6356. !(!(!
  6357. !(!'(!-!'-'
  6358. !-'!'
  6359. (-!-(!(!-(!
  6360. !(!(-!
  6361. -!(-!(!
  6362. -!(!(-(!-!(!
  6363. !'!'!-!-!-'
  6364. -!-!-
  6365. -(!(!-
  6366. -(-(-!-(!(-(!
  6367. (    -!(!(-!-!
  6368. -(!(!
  6369. !(!('(-!
  6370. '/!'!'!'!-!'!'!
  6371. /!-!-!-(!(
  6372. -!(!(!-(!-(!(-(
  6373. (!-(!
  6374. (-!-(!(
  6375. (-(-(
  6376. (!(!(
  6377. !    -!/!
  6378. !'-'!-!-
  6379. !(-(!
  6380. !(-!-
  6381. !(!(!
  6382. (    !(!(!'-'!
  6383. -(-(!-
  6384. !-(-(!-(-!-(-(!(!-(!(-
  6385. !-!(!-!(-(-!
  6386. -!(!(!(-!(!(!-!-'-!/!/!
  6387. -!-!-(!-(-
  6388. !(-(!
  6389. -(!(-!-
  6390. !(-(!
  6391. !(!(!'
  6392. !-'!'!'
  6393. !7'!-!-!
  6394. (!(-(-!(-(!
  6395. (!-!(-(
  6396. !-(!(-(!(!(!(-'-'!'!'
  6397. 7!-!-
  6398. -(-(!
  6399. -(-(-!-
  6400. !(!(!(!(!('
  6401. '%/%/!
  6402. !'!'!'!'
  6403. -(-(!-
  6404. -!(!(!-(!-!(!(!(
  6405. (-(-!
  6406. -!(-(!(!(-(
  6407. (!-!'-
  6408. -(-(-
  6409. -(-(-!-
  6410. (-(!(-(-(!('-!'!'
  6411. -'!'!7
  6412. -!(-(-!(
  6413. !(-(!(-!(!(-
  6414. !-!(-!-(!(
  6415. !(!(!(!(!(!(-!'
  6416. /!-!'
  6417. !(-(!
  6418. -(-(-
  6419. -(-(-!-
  6420. (-(!(!(!('!'!'!/'/
  6421. %'!'-!'-
  6422. -(!(-!
  6423. !-(!(
  6424. (!-!(!(!(!-(-(!
  6425. (-(!-
  6426. -(!(-(-(
  6427. !    (!-'-!/
  6428. -!-!-!(-(-
  6429. -(-(-
  6430. !(-(!-!
  6431. -!(-!(!(!(!(!(-!'-
  6432. !    '!/
  6433. !(!(-!
  6434. (    -!(!(-!(!
  6435. (!(-(
  6436. -!-(-!-(!(
  6437. !(-(!(!(!(-!'!'!'/'/
  6438. '/'!'
  6439. -(-(!
  6440. !-(!-(!(!(-('('!'-'!'
  6441. '-!'-'
  6442. !(-(!-
  6443. (-(!-(
  6444. !(!(!(-!(-(-
  6445. !    (!-!(-(!-
  6446. !(-(-('(!-(!(
  6447. (!(-!
  6448. -(-(-
  6449. -(-(!-!
  6450. -!(-!(!(!(!(!
  6451. -'!/!/
  6452. !-'-'-'
  6453. (!-(!
  6454. !(!(-!
  6455. !-(!(
  6456. (!-!(-(!(-!(!(-
  6457. -(!(!(!(
  6458. /!-'!
  6459. !-(-(-!-!(-(-
  6460. -(-(-
  6461. -(-(!-!
  6462. !-(!-(!(-(!('
  6463. '('!'!/
  6464. ('-!'-
  6465. !    -!-!-(!(-
  6466. -(-(!-
  6467. (    !-(!(!-(!
  6468. (!(!(!-(!(!
  6469. !-!(-!-(-(!-
  6470. !(-(!('(!'!(!'-
  6471. 0*/*'
  6472. -!-!-!-(!(!
  6473. !(-(-
  6474. -(-(-
  6475. -(-(!-!
  6476. -!(-!(!(!(-(!
  6477. -!(-'
  6478. '!-!-!'!-!/
  6479. !-(!(
  6480. (!(!(
  6481. -(!('(-(!'!'
  6482. (!('-
  6483. (-!(-(!(-!
  6484. !(!(!(-!-(!(
  6485. !    (-!(-(!(!
  6486. !    (!(!(!'(!
  6487. !('-'
  6488. /%'!'!'(
  6489. !(!-'-
  6490. -    (-!(-(!(-
  6491. !(!(-!
  6492. -!-!(!-!(!(
  6493. (!(!'!
  6494. !(!('
  6495. !'(!('!-
  6496. !'(!(!'
  6497. -!'!-!
  6498. -(-(-(!-
  6499. (-(!(
  6500. !-!-!(-!-!-(-!(
  6501. -!(-'-'(!-'!-'(!'(!(
  6502. !(!(!'!'-
  6503. '    ('!'(!(-!
  6504. !-!-!(
  6505. !(!(!(-
  6506. !(-!-!(-!(
  6507. (!-!-'(-
  6508. '-'-'!'
  6509. -!(-(
  6510. '(!'!('(!'('-'!-'!'!'
  6511. -!/!/
  6512. !-(!-(-!
  6513. (-(!-
  6514. (!-!-(
  6515. !    '-!'-!-!-
  6516. '-!'!'
  6517. (-!-!-
  6518. (!-!(!'
  6519. !    '-'!/'
  6520. %'('(
  6521. '(-(!
  6522. /!'!/
  6523. !-(-!-(
  6524. -!-(!(-!
  6525. !'!'!'!-
  6526. '-!'!'!'!-'!-'-
  6527. -'-'!'!'('('!('!'-!'-'!'
  6528. !(!(-!-!-!
  6529. !(!(-(!-!-!(-(-(
  6530. !!-!-!-!-!'!'-'-'!'-!-!-!'-'!'-!'-'
  6531. -'!-'
  6532. -'!(!('-!'!'-'!/!/
  6533. !'('!'(!(!(-!-!-!-
  6534. 7!'!/!/'!/!
  6535. /!/!/'/
  6536. /!'!-!
  6537. '-'-'
  6538. '-'!'!'!
  6539. '    ('('('!(!
  6540. !-!/!-!
  6541. -/!'!
  6542. !-(!-(!-!-!(!-!
  6543. '!'-'
  6544. '/!/!/'!/!'
  6545. !/!/!'!'/
  6546. '/'/!'
  6547. '-'!-
  6548. !    '-'!'!/'!
  6549. ('(!(!(-!(-!-!-!
  6550. !-!-!-!(!-!-!-!
  6551. !'-'-!-
  6552. !/!'!'!'!'-!'!'!'-!'!'-'!/'!'
  6553. '    (%('!('(!
  6554. -!-!-!-!-!-!-!'!'-
  6555. !/!/!/
  6556. !/!/'/!'!/'!'!'
  6557. '!'-'!
  6558. -'!'!'
  6559. /!'/'/
  6560. '!(!(!(-!-(!(!
  6561. !-/!-!
  6562. !/!/!-
  6563. '-'!-!
  6564. !-!-!-!
  6565. !-!-!-!-!'-!/!-
  6566. /!/'!/!/
  6567. !'!'!'!'!'-!'!'!'!'/!/!'!/!
  6568. !(-(!
  6569. !-!-'!-!
  6570. /!-'-!7
  6571. !-!-!-
  6572. !'!'!
  6573. !'-'-'
  6574. /'/'/'
  6575. ('!(-(!(
  6576. -    !-!-!/-!'
  6577. -'-!-!-!
  6578. !-!-!
  6579. !-!-!
  6580. !-!'-!'
  6581. /!/!/'!
  6582. -'-'!'!
  6583. '(!(-
  6584. -!7!-!-!-
  6585. '-!-!
  6586. '!'!'-'!-'-'!'!'/!'/!
  6587. ('!(-(!(-!
  6588. (!(-!
  6589. '!-!-
  6590. !-!-!
  6591. '-!/-!/
  6592. !'-'!'!'-'
  6593. !(!(-
  6594. -    !-!-!-!-!
  6595. !-!-!(!(-!-!-!-!-!-!-
  6596. !/!/!
  6597. '-'!'!'!'!
  6598. !'!'!/'/!'
  6599. !'(!(!(-(!-
  6600. !-!-!
  6601. !-!-(!-!-!-!-!-
  6602. -!'!-'
  6603. /!'!'!'-'-'!-!'!
  6604. !'!'!'
  6605. '('(!(-
  6606. -    !-!(-(!(-
  6607. !(!(-!
  6608. !-!-!
  6609. !(!(-(!-!-!-
  6610. '    !'!'!'!'!
  6611. '!'!'!'!'!/!'/
  6612. !(!(-(!(
  6613. -(-(-!(!
  6614. !(!-!-(
  6615. !(!(-!-(!-(!(!(-!(
  6616. -    !-!-!-!-!
  6617. '!-'!
  6618. !'/!/'
  6619. -'!'!'-'
  6620. '(!(!(-
  6621. (-(-(
  6622. !(!(-!-
  6623. !-!(-!(
  6624. -    (-!-(-!-(
  6625. '!/!'-'-'!'-
  6626. !'(!-
  6627. (%'('('(!('(-(!-
  6628. -(!(!
  6629. -    (!-!-(-(!
  6630. /'!'!'-'(!(!'-
  6631. -'!'/'!
  6632. *%'%'%
  6633. '    !('(!(!(-
  6634. (-(-(!-(-(-
  6635. (    !(-(!(-(!
  6636. !(!-(
  6637. -!-!/-
  6638. '!('-!-!'!'
  6639. %('('!(!(!(!(-!
  6640. !(-(-
  6641. -(!(!-!(!(
  6642. (-(-(!(-(-(
  6643. !'!'-'(!(!'!('(!'(
  6644. !'!'!
  6645. (    '('(!(-(!
  6646. -!(-!
  6647. (-(-(!-(-(-
  6648. !(!(-(-(!(!
  6649. -!'-'!-!
  6650. '!'!'('!'!('('(!'('!-'!'!/'
  6651. &'*'%'%
  6652. '(!(!(-
  6653. !(-(!
  6654. !(-(!-(-(-(!(!(-(
  6655. !-(-!(
  6656. '!'-'!('('(!'('-!'('!'!
  6657. !'!(!(!(-(-!
  6658. -!(-!
  6659. (!(-(
  6660. -(!(-(-(-(!
  6661. !'!'!'-!'('(
  6662. /'/!/
  6663. */%'*
  6664. !(-(!(!
  6665. -(!(!
  6666. (!(-!(-(!(-(!(-(!
  6667. !('('!('('('(
  6668. (!(!(-(
  6669. !-(-(-(-!(-(!
  6670. -(-(-(-(-(!
  6671. '-!'-/
  6672. '(!'(
  6673. ('('('
  6674. !(!(-(!
  6675. -(!(-
  6676. -(!(-!-(!(!-(!(!(!(!(!(-!-
  6677. /'/!'!'!'!'('(!'!(
  6678. !    '!'
  6679. ('(!'('(!(-(!-
  6680. !-(!-!-(-(-(-!(-(-
  6681. -(-(-(-(-(!
  6682. /    '!/'!'-'(
  6683. -(-(!(-
  6684. !(!(!
  6685. !(-(-!(!(-(-(!(-(
  6686. !-'('!
  6687. '!('/!/!/'
  6688. %&'/%
  6689. ('('(
  6690. !    (!(!(-(!-
  6691. !(-(-(
  6692. -(-(!(!(!(!-(-
  6693. '-'-'/
  6694. !'!(!('!('-
  6695. (    '(!(!(-(-
  6696. -(-(!
  6697. !(-(!-!(!(
  6698. (-(!(-(-(-
  6699. !-!-!-!
  6700. !'('!'
  6701. !('('(!(!(!-
  6702. !-(-!-!(-(-(
  6703. -(-(!(!(-(-(!(
  6704. -(!-!-!'!/
  6705. !'-!'-'!'-'!
  6706. ('(!(!(-(-(-
  6707. !(!(!
  6708. !(!(!-(-(-
  6709. (    -(-(!(!(!
  6710. !-!-'!-/!/!
  6711. '    !'!'!'!'!
  6712. '('(!('(!(!(-!
  6713. !-(-!
  6714. (-(-(-!(-(-
  6715. !(!(-!(-(!(
  6716. -'-!/
  6717. !'!-'-'!'-'!
  6718. '(!(!(!(!(!(-!
  6719. !(-(-
  6720. -(!(-
  6721. !(!-!-
  6722. !    '!/
  6723. /'!'!'
  6724. '-'!'
  6725. ('('(!(!(-(-
  6726. (!(!(-!(-(!
  6727. -(!(-!(-(!(
  6728. -!-!-!-!'7
  6729. !(!(-(!(!(-!
  6730. -(-(!
  6731. !(-(-!(-(!
  6732. !(-(-
  6733. (    -!'-'!/!
  6734. '    !-'!'/
  6735. ('('(!(!(-
  6736. -!(!-!-(!(-(
  6737. !(!(!(!(-(!
  6738. -(-(!
  6739. %'('!'(!(!(!(-(!(
  6740. (!(-(
  6741. (    -(-(-(-(-
  6742. '/!'/
  6743. /*/%'&'%'%(
  6744. ('('('('('-(-(!(-(!
  6745. -(!(!
  6746. -(!(!(-(-(!(!(!-!-'!'!7!/!/
  6747. /!/!/!'/'!/'
  6748. (+!(!(!(!(-!(-!-!(-(-(-!(-(-(-(!(!(!-(!('-!-!
  6749. /!'!/'!/
  6750. '(!(!(-(!(-
  6751. -(!(-
  6752. -(!(-(!(-(-(
  6753. '/!/'
  6754. !'(!('(!(-(!(
  6755. ! (-!-!(-(-(-!(-(!(-(-(!(-(!(!-!'-
  6756. '/'/'
  6757. *%/&%
  6758. '(!(-(!(-(-
  6759. ("!(!(!(!(-(-(-(-(!(!-!-!-!'!'/
  6760. (!('(!(!(!(!-(!
  6761. !(-(!(-(-(!(!(!(!(-(!('-!'
  6762. */*/%'%
  6763. '(!(!(!(!(!(!
  6764. -(!(-(!(!(-(-(-(-(!-!-
  6765. '('('(!(-(!(-(-
  6766. (!(!(-(!(!(!(!(!(!
  6767. ('!(!(!('(!(-(!(!
  6768. !    /'!
  6769. ('('(
  6770. ' (!(!(!(!(-(!(!-(!(-(!(-(!(!(-(!(
  6771. !    (!'-'!-/!
  6772. */%/%
  6773. ('(%('('
  6774. (    !('(!(-(!@
  6775. (-(!(
  6776. ('('('!('(!(!(-@
  6777. !-'-'-'!'
  6778. ('('('(!
  6779.     (-(!(!(!(
  6780. /&/%'%
  6781. (!(!(!(!@
  6782. (!(!-(
  6783. '-!'!/'
  6784. '('('(-@
  6785. (-(!(-
  6786. !-'-!'!
  6787. ('!(!(!(!(-@
  6788. (    -!-!'/!/
  6789. ('('('
  6790. '!('(!@
  6791. (!(-(!(
  6792. '!-/!'/
  6793. '(!('(!@
  6794. '(!-'!'/
  6795. ('(!(!(!@
  6796. (!(!(-'
  6797. '(!('('-(-@
  6798. (!('(!
  6799. (!(!(
  6800. /'/%'%
  6801. (,'('(!(!'!(!(!(-(!(!(-(!(-(!(!(!'-'!-'!/'/
  6802. (!'(!'
  6803. '(!(-(!(-(-(!(-(!(-(!
  6804. ('('@
  6805. (!'!-!-'
  6806. (%('(!('
  6807. !(!(!(-(!(!(-(!(-(!('-(!('
  6808. '('(!(!('(!(!(-(!(-(!(-
  6809. '('!-'!'!/!/
  6810. !(!('@
  6811. '!(!-(
  6812. ('(!('(!(!(!(!(!(!('
  6813. '(!(-'!'
  6814. %('('('('!
  6815. '!(!(!('('-(!('(!(-(
  6816. ('('-!-!'
  6817. '!('('(!(!
  6818. (    !('(!('(!
  6819. !(!(!
  6820. %'('('
  6821. !(!('(
  6822. '(!(!(!(!('!('(!(!(-!'
  6823. '    (!'('(!(!
  6824. (    '(!('(!(!
  6825. !('('(!'
  6826. ('('!
  6827. (    '('!('('(
  6828. ('(!('('('!(!(!('!-'
  6829. (%('(
  6830. '(!(!('
  6831. (    !(!(!(!(!
  6832. '(!(!('(!'-
  6833. '!'(!(!(!(!('('('(!(
  6834. (!('('!-'-!'
  6835. '('('(!(!(!(!('('
  6836. '(!(!
  6837. '/!/'/'!
  6838. ("'!'('!(!('('(!(!(!(!('!('('(!'!'!'
  6839. !(!(!(!
  6840. !'!/'/%
  6841. '!'(!(!('(!(!(!('('(!(!(!'!(
  6842. ('-!'-!'!'!/'
  6843. /'/!/'/%/
  6844. '('!(!(!(!(!(!(!('('
  6845. (    !('('(!'!
  6846. !'!/!'/!%/
  6847. !/!'!/!/%/'
  6848. %('%(
  6849. (.'('!'('(!('('('(!(!('(!(!('(!(!('('!-'!'!'/!'
  6850. !'/!/
  6851. '!('('('(!(!('(!(!('(!(!(!(!(!('('(
  6852. -'!'/
  6853. !/'!'
  6854. !/!/%
  6855. ('('('
  6856. (&'('('('('(!(!(!('(!('('(!(!(!(!('!-!-'
  6857. '!/!/
  6858. /'/!'!/!
  6859. '('('!('('(!(!('(!(!('('(!(
  6860. !('!'-
  6861. '    ('('('('(
  6862. '!(!('(!(!(!(!(!(!('(!
  6863. '!(!'!-'
  6864. '!'!/
  6865. !'!'/!/
  6866. (%'('('(
  6867. '('(!('(!('('(!(!(!('(!
  6868. /'!'!
  6869. '    /'!'/'/!/
  6870. ('('('('
  6871. (!'('(!('(!(!('('('(!('('(!'!('(!-'
  6872. /'!'!/
  6873. '/!/'!
  6874. /%/'/
  6875. '!'!'
  6876. ('('(
  6877. '.('('('('(!'(!('('!('(!(!(!(!('(!(!('('(!'('('-
  6878. !'!'!'!'!/'!'!/'!/'!'
  6879. /'/'!'!'
  6880. !'!'!
  6881. %'/'!'!
  6882. ('('('('('
  6883. '('('(!
  6884. '(!('(!('(!(!('(!
  6885. !('-'(
  6886. '!('-'-'!'!
  6887. !/'!'!'/!/
  6888. !/'!'!/
  6889. '&('('('('(!('('('!(!('(!('(!(!(!(!(!'('
  6890. '('(!'-'!'!'-'
  6891. '!'!'!'
  6892. '!'!'!'
  6893. '!'!'!'!'!'-'-'!
  6894. /!'/!'
  6895. ('('(
  6896. ('('(!'('(!('(
  6897. ('('('(!('('(!('(!(!'!'(!('(!'(
  6898. (!'!'-'!-!
  6899. !'!'!'!
  6900. !'!'!
  6901. '!'-'!'-'-'!'!'!'
  6902. !'!'/!/
  6903.     /'%'!'('(
  6904. %('('('(
  6905. !('('(!(!(!(!('
  6906. '('!('(!'(!'('!'-
  6907. !-'-'-'!'-!'
  6908. '!'-'!-'!'!
  6909. !-'!'-'('!'!'-'!
  6910. '    %'('('('(
  6911. %('('
  6912. !('('('!('('('('(!('('
  6913. ( !'!(!('('('('('!(!('(-!'!'!'-'(!
  6914. '!-'!'!'-'-'!(!-'!('!('(!'('!'!'-'!
  6915. '    !'!'!'('(
  6916. ('('(!('(!('(!(!('(!(!('
  6917. '('(!('(!'(!(
  6918. '!('(!('(!
  6919. !-'!-'!'-('(!'!('!(!'!'('!
  6920. '    ('!'!'-'!
  6921. ('('(%('('(%(
  6922. (    '('(!'('(
  6923. (!('('('!'(!(!('(!'
  6924. (!'(!('(!('(!('
  6925. '('-'('!'('!'('('!'('-'('-'!
  6926. ('!%(
  6927. ('('('!
  6928. '    ('!('('(!
  6929. '('(!('
  6930. '('(!('
  6931. '!('(!'('('('(!('('('!('!('('
  6932. '(!('(!'!('
  6933. '!'!'('!'!'!
  6934. !'!/'
  6935. '('('('('('('
  6936. '(!('('!'('!('(!('('!(
  6937. '    !('('(!('
  6938. !('(!@
  6939. ('('(!'
  6940. '('!'('('!'-'!
  6941. /'/!%/
  6942. !'!'(!'(%'(
  6943. ('('(
  6944. (!'('
  6945. '(!'('(!
  6946. '(!('('(!(
  6947. (!('('(!'(!(!(!('
  6948. '(!(!('
  6949. '(!'!(!('('!'!
  6950. /%/'!
  6951. '    ('(%('('(
  6952. ('('('
  6953. '!'('
  6954. '('('(!'
  6955. (!(!('
  6956. !('(!(!
  6957. '('('('('!(!(
  6958. ('('!('!'('
  6959. ('!'!'('!'
  6960. ('('(
  6961. '(!(!'(!('!('(!'
  6962. (!'('('('(
  6963. ('('(!('
  6964. '(!('('(!(
  6965. !    '(!'('('!
  6966. !'/'!
  6967. /!'/'!
  6968. ('('('(
  6969. ('('('
  6970. '('('('
  6971. '('!'('
  6972. '('('(!('('
  6973. !(!('(!('('('!('('(!('(
  6974. ('!'!'!'!'!'!
  6975. !'!'(
  6976. ('!('(!('(!'('!
  6977. '('(!'(!('(!('(!('!('('(
  6978. (!'(!('(!'('('!'!(
  6979. ('!'(
  6980. '('('(!'(!'
  6981. '('!'
  6982. '('(!
  6983. '('(!'
  6984. '(!'('('(!'('('(
  6985. '!'!'!
  6986. ('('!('('('('
  6987. '(!'(!
  6988. (!'('!('
  6989. (    '!('('(!(
  6990. ('('(
  6991. '('('('('('!(
  6992. '('('!'('!'
  6993. (    '('('('('
  6994. /'!/'/'!'!'!'(!
  6995. ('('('('('(
  6996. '!'('('(!('
  6997. '('('(!('('('(
  6998. ('%'('('('
  6999. (    %('('('('
  7000. '('('('('('(!'
  7001. '!'('('(
  7002. (!'('('(!'!'(
  7003. !'(!'!'('(
  7004. ('('('(
  7005. ('('('('('!('(
  7006. '    ('!'('('(
  7007. '    !'/'
  7008. '!/'!'
  7009. '    ('!'(%('(
  7010. ('('('('('!
  7011. ('('!'!
  7012. '    /!'/'/
  7013. ('!'(
  7014. '    ('('('('(
  7015. ('(%!'(
  7016. ('('!
  7017. '!'!'!
  7018. ('('!
  7019. ('(%'
  7020. '('(!'(
  7021. !'!'!
  7022. !'/'/
  7023. /'/'/!/!
  7024. !'%('!'!
  7025. !'!'!
  7026. /!%'/
  7027. !'('!
  7028. ('('!
  7029. !'%'!
  7030. %'!'!
  7031. !'/'%
  7032. /'/!/
  7033. !/'%!
  7034. %/%'/
  7035. '/%/%'/%/
  7036. ''''''''
  7037. !'('(!'(P
  7038.  - - - -
  7039. (!('('('
  7040. ----!-!-
  7041. -!-!-!--
  7042. (!(!(!(-P
  7043. 9(!(-(!(-
  7044. (!(!(!(!
  7045. (-(!(-(-P
  7046. 9(-(!(!(!
  7047. (!(-(!(!
  7048. '('(!(!(P
  7049. 9!''!''!'C
  7050. '!'!'!'!
  7051. !'('('(!('('
  7052. O=Lotus Notes
  7053. O=Lotus Notes
  7054. PURSAFO
  7055. |.:#U
  7056. O=Lotus Notes
  7057. CN=Lotus Notes Template Development/O=Lotus Notes
  7058. PURSAFO
  7059. Fde!f^^
  7060. $TITLE
  7061. $FormUsers
  7062. $Info
  7063. $$Script_O
  7064. $$ScriptName
  7065. $Body
  7066. &Arial
  7067. Certificate Information
  7068.  CertificateInformation
  7069. TempIsRoot
  7070.     3S4S6S
  7071. TempIsRoot
  7072. TempKeyFileName
  7073. Catagories
  7074. HideSiteCert
  7075. CertIsDel
  7076.     1S2S
  7077. Certificate Information
  7078.     This form displays the information contained in the certificate you have chosen to examine. 
  7079. EntryLabel
  7080. ** Certificate Deleted **
  7081.     1S2S
  7082. You have deleted this certificate. It will no longer be displayed when you view the contents of this key ring.
  7083.     Key Ring & Certificate Identification
  7084.     Key Ring File Name
  7085. TempKeyFileName
  7086. CompKeyFileName
  7087.     Certificate Label
  7088. EntryLabel
  7089.     Certificate Information
  7090.     Certificate Subject
  7091.     Certificate Issuer
  7092.     Common Name
  7093. SubjCommonName
  7094. IssCommonName
  7095.     Organization
  7096. SubjOrganization
  7097. IssOrganization
  7098.     Organizational Unit
  7099. SubjOrgUnit
  7100. IssOrgUnit
  7101.     City
  7102. SubjCity
  7103. IssCity
  7104.     State
  7105. SubjState
  7106. IssState
  7107.     Country
  7108. SubjCountry
  7109. IssCountry
  7110.     Validity Dates
  7111.     Start
  7112. CertStartDate
  7113. CertEndDate
  7114. HideSiteCert
  7115. CertIsDel
  7116.     0S6S7S10S11S12S
  7117.     0S0E
  7118.     Close
  7119. O=Lotus Notes
  7120. O=Lotus Notes
  7121. PURSAFO
  7122. |.:#U
  7123. O=Lotus Notes
  7124. CN=Lotus Notes Template Development/O=Lotus Notes
  7125. PURSAFO
  7126. Fde!f^^
  7127. $TITLE
  7128. $Readers
  7129. $FormUsers
  7130. $Info
  7131. $WindowTitle
  7132. $$Script_O
  7133. $$ScriptName
  7134. $Body
  7135. Cert Request ApprovedCertRequestApproved[CAPrivlegedUser]CD
  7136. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes############################
  7137. Web Cert Request OutputOutputRequestCD
  7138. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########
  7139. Web Cert Server RequestCertRequestServerCD
  7140. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#############################################
  7141. Notes CA Certificate PickupCACert[CAPrivlegedUser]CD
  7142. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  7143. ##########################################################
  7144. Notes Cert Server RequestCertRequestServerNotesCD
  7145. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################################
  7146. Web URL Certificate PickupCertPickupCP[CAPrivlegedUser]CD
  7147. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  7148. ##########################################################
  7149. Web CA Certificate PickupCertPickupCA[CAPrivlegedUser]CD
  7150. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#######################
  7151. WebPageForIndexFrame[CertAppDesigner]1
  7152. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################################
  7153. DlgConfirmResubmitCertReq1CD
  7154. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###########
  7155. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############
  7156. Approved Certificate Request
  7157. 5Courier New
  7158.  CertRequestApproved'++LotusScript Development Environment:2:5:(Options):0:74
  7159. Use "certLib"
  7160. '++LotusScript Development Environment:2:5:(Forward):0:1
  7161. Declare Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
  7162. '++LotusScript Development Environment:2:5:(Declarations):0:2
  7163. '++LotusScript Development Environment:2:2:BindEvents:1:129
  7164. Private Sub BindEvents(Byval Objectname_ As String)
  7165.      Static Source As NOTESUIDOCUMENT
  7166.      Set Source = Bind(Objectname_)
  7167.      On Event Queryopen From Source Call Queryopen
  7168. End Sub
  7169. '++LotusScript Development Environment:2:2:Queryopen:1:12
  7170. Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
  7171.      Dim doc As NotesDocument
  7172.      Set doc = Source.Document
  7173.      Call CertToPickupCert(doc) 
  7174. End Sub
  7175. CertIsDel
  7176.     1S2S
  7177. Approved Certificate Request
  7178.     The certificate below has been approved and signed. The certificate information is provided below for reference.
  7179.     Contact Information
  7180.     Full Name
  7181. TempIsRoot
  7182. HideSiteCert
  7183. CertIsDel
  7184.     3S4S6S7S13S14S17S18S19S
  7185. ContactName
  7186. ContactName
  7187.     E-Mail Address
  7188. EMail
  7189. EMail[<SIZE=30 MAXLENGTH=70>]
  7190.     Phone Number
  7191. Phone
  7192. Phone
  7193.     Comments
  7194. Comments
  7195. Comments
  7196.     Certificate Information
  7197.     Certificate Subject
  7198.     Certificate Issuer
  7199.     Common Name
  7200. SubjCommonName
  7201. IssCommonName
  7202.     Organization
  7203. SubjOrganization
  7204. IssOrganization
  7205.     Organizational Unit
  7206. SubjOrgUnit
  7207. IssOrgUnit
  7208.     City
  7209. SubjCity
  7210. IssCity
  7211.     State
  7212. SubjState
  7213. IssState
  7214.     Country
  7215. SubjCountry
  7216. IssCountry
  7217.     Validity Dates
  7218.     Start
  7219. ValidBegDate
  7220. ValidBegDate
  7221. ValidEndDate
  7222. ValidEndDate
  7223.     Certificate
  7224.     Pick up ID
  7225. TempIsRoot
  7226. HideSiteCert
  7227. CertIsDel
  7228.     2S3S4S6S7S13S14S17S18S19S
  7229. PickupID
  7230. HideSiteCert
  7231. CertIsDel
  7232.     0S6S7S10S11S12S
  7233. PickupCertificate
  7234. PickupCertificate
  7235. [CertAppDesigner]
  7236.     1S6S7S
  7237.     Hidden fields:
  7238.     Approved:  
  7239. Approved
  7240.     Request type: 
  7241. RequestType
  7242. Categori_ze
  7243. _Edit Document
  7244. Send Docu_ment
  7245. _Forward
  7246. _Move To Folder...
  7247. _Remove From Folder
  7248. O=Lotus Notes
  7249. O=Lotus Notes
  7250. PURSAFO
  7251. |.:#U
  7252. O=Lotus Notes
  7253. CN=Lotus Notes Template Development/O=Lotus Notes
  7254. PURSAFO
  7255. Fde!f^^
  7256. Untitled
  7257. Untitled2
  7258. ValidFrom
  7259. ValidTo
  7260. ValidDays
  7261. $TITLE
  7262. $FormUsers
  7263. $Info
  7264. $WindowTitle
  7265. $$Script_O
  7266. $$ScriptName
  7267. $$FormScript
  7268. $$$FormScript_O
  7269. $Body
  7270. $ACTIONS
  7271. &Arial
  7272.  OutputRequest
  7273. Your Certificate Request Has Been Submitted
  7274.     You will receive an e-mail notification when the Certificate Authority has reviewed your request.
  7275.     This is the contact information you provided: 
  7276.     Full name:
  7277. ContactName
  7278.     Email address:
  7279. EMail
  7280. EMail[<SIZE=30 MAXLENGTH=70>]
  7281.     Phone number:
  7282. Phone
  7283.     Comments:
  7284. Comments
  7285.     [<br>]This is the information in the certificate you submitted:
  7286.     Common name:
  7287. CommonName
  7288. CommonName[<SIZE=30 MAXLENGTH=30>]
  7289.     Organization:
  7290. Org[<SIZE=30 MAXLENGTH=30>]
  7291.     Organizational unit:
  7292. OrgUnit
  7293. OrgUnit
  7294.     City or locality:
  7295. Locality
  7296. Locality[<SIZE=30 MAXLENGTH=70>]
  7297.     State or province:
  7298. State
  7299. State
  7300.     Country:
  7301. Country
  7302. Country
  7303. O=Lotus Notes
  7304. O=Lotus Notes
  7305. PURSAFO
  7306. |.:#U
  7307. O=Lotus Notes
  7308. CN=Lotus Notes Template Development/O=Lotus Notes
  7309. PURSAFO
  7310. Fde!f^^
  7311. rIOqm
  7312. Untitled
  7313. Untitled2
  7314. ValidFrom
  7315. ValidTo
  7316. $TITLE
  7317. $Info
  7318. $$ScriptName
  7319. $Body
  7320. DlgAlreadyHaveCAKey
  7321. A key ring file for this Certificate Authority has already been created.  If you create a new one, you will invalidate certificates signed by the old one.  If you really need a new key ring, we suggest you create a new CA Application with a different key ring file.
  7322. WARNING! 
  7323. Are you sure you want to proceed?
  7324. O=Lotus Notes
  7325. O=Lotus Notes
  7326. PURSAFO
  7327. |.:#U
  7328. O=Lotus Notes
  7329. CN=Lotus Notes Template Development/O=Lotus Notes
  7330. PURSAFO
  7331. Fde!f^^
  7332. $TITLE
  7333. $NoBackgroundOverride
  7334. $Info
  7335. $$ScriptName
  7336. $Body
  7337. Request a Server Certificate
  7338. size = 50
  7339. &Arial
  7340.  CertRequestServer
  7341. Request a Server Certificate
  7342. [CertAppDesigner]
  7343.     1S6S7S
  7344.     Use this form to submit a server certificate request to be signed by the Certificate Authority.  
  7345.     [<br>]Contact Information:
  7346.     Provide the following information in case the Certificate Authority needs to contact you.
  7347.     Full name:
  7348. size = 50
  7349. ContactName
  7350.     E-mail address:
  7351. size = 50
  7352. EMail
  7353. EMail[<SIZE=30 MAXLENGTH=70>]
  7354.     Phone:
  7355. size = 50
  7356. Phone
  7357.     Comments:
  7358. size = 50
  7359. Comments
  7360.     [<br>]Paste the certificate request:
  7361.     To paste the PKCS-encoded certificate from the clipboard, click in the field below and press CTRL+V.  Check to make sure that the BEGIN and END lines are included.
  7362.     <textarea name=Certificate cols=65 rows=6></textarea>
  7363.     Submit Certificate Request
  7364.     Hidden fields:
  7365. Certificate
  7366. RequestType
  7367. /OutputRequest?RequestCert&ServerRequest&TranslateForm=CertRequestTranslation
  7368.     1S2S6S9S10SRequestAction
  7369. O=Lotus Notes
  7370. O=Lotus Notes
  7371. PURSAFO
  7372. |.:#U
  7373. O=Lotus Notes
  7374. CN=Lotus Notes Template Development/O=Lotus Notes
  7375. PURSAFO
  7376. Fde!f^^
  7377. $TITLE
  7378. $Info
  7379. $WindowTitle
  7380. $HTMLBodyTag
  7381. $$ScriptName
  7382. $Body
  7383. Certificate Authority Trusted Root Certificate
  7384. 5Courier New
  7385.  CACert'++LotusScript Development Environment:2:5:(Options):0:74
  7386. Use "CertLib"
  7387. '++LotusScript Development Environment:2:5:(Forward):0:1
  7388. Declare Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
  7389. '++LotusScript Development Environment:2:5:(Declarations):0:2
  7390. '++LotusScript Development Environment:2:2:BindEvents:1:129
  7391. Private Sub BindEvents(Byval Objectname_ As String)
  7392.      Static Source As NOTESUIDOCUMENT
  7393.      Set Source = Bind(Objectname_)
  7394.      On Event Queryopen From Source Call Queryopen
  7395. End Sub
  7396. '++LotusScript Development Environment:2:2:Queryopen:1:12
  7397. Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
  7398.      Dim doc As NotesDocument
  7399.      Set doc = Source.Document
  7400.      Call CertToPickupCert(doc) 
  7401. End Sub
  7402. '++LotusScript Development Environment:2:5:(Options):0:74
  7403. Use "CertLib"
  7404. '++LotusScript Development Environment:2:5:(Forward):0:1
  7405. Declare Sub Initialize
  7406. '++LotusScript Development Environment:2:5:(Declarations):0:2
  7407. '++LotusScript Development Environment:2:2:BindEvents:1:129
  7408. Private Sub BindEvents(Byval Objectname_ As String)
  7409.      Static Source As FIELD
  7410.      Set Source = Bind(Objectname_)
  7411. End Sub
  7412. '++LotusScript Development Environment:2:2:Initialize:1:10
  7413. Sub Initialize
  7414.      
  7415. End Sub
  7416. Pick Up Certificate Authority Trusted Root Certificate
  7417.     Note: This form is for administrators setting up a Certificate Authority server.  
  7418.      Server administrators normally choose "Accept This Authority In Your Server" from the main menu of the Certificate Authority Web site to pick up the Certificate Authority certificate.  Since you are in the process of setting up the Certificate Authority server, this form provides a shortcut for obtaining the CA certificate.
  7419.     Below is a brief description of the steps required for setting up the server key ring on the Certificate Authority server.  The steps require going back and forth between the Certificate Authority application and the Server Certificate Administration application.  See Domino Help or the Domino User's Guide for more information on setting up the server key ring for the Certificate Authority server.
  7420.     - In the Server Certificate Administration application, choose "Create Keyring".
  7421.       Complete the form and submit it.
  7422.     - In the Certificate Authority application, choose "Pick Up Certificate Authority Certificate".  
  7423.       The form provides a copy of the   Certificate Authority Trusted Root certificate in PKCS format.  
  7424.       Copy the certificate to the clipboard.  
  7425.     (You are here)
  7426.     - In the Server Certificate Administration application, choose "Install Trusted Root Certificate Into Key Ring".  
  7427.       Paste the Certificate Authority certificate into this form and submit the form.
  7428.     - In the Server Certificate Administration application, choose "Create Certificate Request".  
  7429.       Fill in and submit the form.  In the confirmation dialog that pops up, the certificate request is displayed in 
  7430.       PKCS format.  Copy the certificate to the clipboard.
  7431.     - In the Certificate Authority application, choose "Submit Server Certificate Request".  
  7432.       Paste the certificate from the clipboard into the field provided, complete the remaining fields, 
  7433.       and submit the form. 
  7434.     - In the Certificate Authority application, choose "Certificate Requests" to see the pending certificate requests:
  7435.          - Open the request you created, and approve it.  
  7436.          - Choose the "View Approved Certificate Requests" action button to display the approved request.  
  7437.          - Open the approved request, and copy the PKCS-encoded certificate to the clipboard.
  7438.     - In the Server Certificate Administration application, choose "Install Certificate Into Key Ring".  
  7439.       Paste the certificate from the clipboard into the provided field, complete the remaining fields,
  7440.       and submit the form.
  7441.     Certificate Authority Information
  7442.     Common Name
  7443. CommonName
  7444. CommonName
  7445.     Organization
  7446.     Organizational Unit
  7447. OrgUnit
  7448. OrgUnit
  7449.     City or Locality
  7450. Locality
  7451. Locality
  7452.     State or Province
  7453. State
  7454. State
  7455.     Country
  7456. Country
  7457. Country
  7458.     Certificate
  7459.     Quick Help
  7460.     Copy this PKCS encoded certificate and paste into your server:
  7461. PickupCertificate
  7462. PickupCertificate
  7463.     To copy the certificate, select all the text, including the BEGIN and END lines, and press CTRL+C.  
  7464.     Note
  7465.     :  After copying this certificate, the next step is to choose "Install Trusted Root Certificate into Key Ring" in the Server Certificate Administration application.
  7466.     0S0E
  7467.     Done
  7468. [CertAppDesigner]
  7469.     1S6S7S
  7470.     Hidden fields:
  7471.     Pickup id: 
  7472. CACert
  7473. PickupId
  7474.     Request type: 
  7475. RequestType
  7476. Categori_ze
  7477. _Edit Document
  7478. Send Docu_ment
  7479. _Forward
  7480. _Move To Folder...
  7481. _Remove From Folder
  7482. O=Lotus Notes
  7483. O=Lotus Notes
  7484. PURSAFO
  7485. |.:#U
  7486. O=Lotus Notes
  7487. CN=Lotus Notes Template Development/O=Lotus Notes
  7488. PURSAFO
  7489. Fde!f^^
  7490. QF - mD
  7491. Untitled
  7492. Untitled2
  7493. ValidFrom
  7494. ValidTo
  7495. ValidDays
  7496. $TITLE
  7497. $FormUsers
  7498. $Info
  7499. $WindowTitle
  7500. $$Script_O
  7501. $$ScriptName
  7502. $$FormScript
  7503. $$$FormScript_O
  7504. $$PickupCertificate
  7505. $PickupCertificate_O
  7506. $Body
  7507. $ACTIONS
  7508. 5Courier New
  7509. Submit Server Certificate Request
  7510.  CertRequestServerNotes
  7511. [CertAppDesigner]
  7512.     1S6S7S
  7513. Submit a Server Certificate Request
  7514.     Note: This form is for administrators setting up a Certificate Authority server.  Server administrators normally submit a certificate request for signing by choosing "Request Server Certificate" from the main menu of the Certificate Authority Web site.  Since you are in the process of setting up the Certificate Authority Web site, this form provides a shortcut for submitting the certificate request for your server key ring.
  7515.     Below is a brief description of the steps required for setting up the server key ring on the Certificate Authority server.  The steps require going back and forth between the Certificate Authority application and the Server Certificate Administration application.  See Domino Help or the Domino User's Guide for more information on setting up the server key ring for the Certificate Authority server.
  7516.     - In the Server Certificate Administration application, choose "Create Keyring".
  7517.       Complete the form and submit it.
  7518.     - In the Certificate Authority application, choose "Pick Up Certificate Authority Certificate".  
  7519.       The form provides a copy of the   Certificate Authority Trusted Root certificate in PKCS format.  
  7520.       Copy the certificate to the clipboard. 
  7521.     - In the Server Certificate Administration application, choose "Install Trusted Root Certificate Into Key Ring".  
  7522.       Paste the Certificate Authority certificate into this form and submit the form.
  7523.     - In the Server Certificate Administration application, choose "Create Certificate Request".  
  7524.       Fill in and submit the form.  In the confirmation dialog that pops up, the certificate request is displayed in 
  7525.       PKCS format.  Copy the certificate to the clipboard.
  7526.     - In the Certificate Authority application, choose "Submit Server Certificate Request".  
  7527.       Paste the certificate from the clipboard into the field provided, complete the remaining fields, 
  7528.       and submit the form.  
  7529.     (You are here)
  7530.     - In the Certificate Authority application, choose "Certificate Requests" to see the pending certificate requests:
  7531.          - Open the request you created, and approve it.  
  7532.          - Choose the "View Approved Certificate Requests" action button to display the approved request.  
  7533.          - Open the approved request, and copy the PKCS-encoded certificate to the clipboard.
  7534.     - In the Server Certificate Administration application, choose "Install Certificate Into Key Ring".  
  7535.       Paste the certificate from the clipboard into the provided field, complete the remaining fields,
  7536.       and submit the form.
  7537.     Contact Information
  7538.     Quick Help
  7539.     Full Name
  7540. ContactNameName the CA can use to contact you
  7541.     E-mail Address
  7542. EMail
  7543. EMailE-mail address the CA can use to contact you
  7544.     Phone
  7545. PhonePhone number the CA can use to contact you
  7546.     Comments
  7547. CommentsAny additional comments that you want to send to the CA
  7548.     Provide this information in case the Certificate Authority needs to contact you.
  7549.     Certificate
  7550. Certificate
  7551.     Paste your certificate request in this field.
  7552.     Note
  7553.     : The Certificate Request must already be in the clipboard from the "Create Certificate Request" operation in the Server Certificate Administration application.
  7554. '++LotusScript Development Environment:2:5:(Options):0:74
  7555. Use "CertLib"
  7556. '++LotusScript Development Environment:2:5:(Forward):0:1
  7557. Declare Sub Click(Source As Button)
  7558. '++LotusScript Development Environment:2:5:(Declarations):0:2
  7559. '++LotusScript Development Environment:2:2:BindEvents:1:129
  7560. Private Sub BindEvents(Byval Objectname_ As String)
  7561.      Static Source As BUTTON
  7562.      Set Source = Bind(Objectname_)
  7563.      On Event Click From Source Call Click
  7564. End Sub
  7565. '++LotusScript Development Environment:2:2:Click:1:12
  7566. Sub Click(Source As Button)
  7567.      Dim ws As New NotesUIWorkspace
  7568.      Dim uidoc As NotesUIDocument
  7569.      Dim doc As NotesDocument
  7570.      
  7571.      Set uidoc = ws.CurrentDocument
  7572.      Set doc = uidoc.Document
  7573.      
  7574.      ok = SubmitCertificateRequest(doc)
  7575.      If ok Then 
  7576.           flag% = ws.DialogBox("DlgConfirmNotesSubmitCertReq",True,True,True,False,False,False)
  7577.           Call uidoc.Save
  7578.           Call uidoc.Close
  7579.      Else
  7580.           Messagebox GetString(err_SubmitFailed)
  7581.      End If
  7582. End Sub
  7583. New Button
  7584. Need a newer version of Notes to execute this button.
  7585.     0S0E
  7586.     Submit Certificate Request
  7587.     Hidden fields:
  7588. RequestType
  7589. O=Lotus Notes
  7590. O=Lotus Notes
  7591. PURSAFO
  7592. |.:#U
  7593. O=Lotus Notes
  7594. CN=Lotus Notes Template Development/O=Lotus Notes
  7595. PURSAFO
  7596. Fde!f^^
  7597. $TITLE
  7598. $Info
  7599. $WindowTitle
  7600. $$Script_O
  7601. $$ScriptName
  7602. $Body
  7603. Pick Up Signed Certificate
  7604. &Arial
  7605. 5Courier New
  7606.  CertPickupCP'++LotusScript Development Environment:2:5:(Options):0:74
  7607. Use "CertLib"
  7608. '++LotusScript Development Environment:2:5:(Forward):0:1
  7609. Declare Sub Initialize
  7610. '++LotusScript Development Environment:2:5:(Declarations):0:2
  7611. '++LotusScript Development Environment:2:2:BindEvents:1:129
  7612. Private Sub BindEvents(Byval Objectname_ As String)
  7613.      Static Source As FIELD
  7614.      Set Source = Bind(Objectname_)
  7615. End Sub
  7616. '++LotusScript Development Environment:2:2:Initialize:1:10
  7617. Sub Initialize
  7618.      
  7619. End Sub
  7620. Pick Up Signed Certificate
  7621.     Use this form to pick up the signed certificate so you can install it in the key ring on your server.  
  7622.     Note:
  7623.      Before installing this certificate, the certificate of the signing Certificate Authority must be installed in your key ring as a Trusted Root.  If you haven't already done so, choose "Accept This Authority In Your Server" from the main menu to obtain the CA certificate.
  7624.     [<br>]The information contained in the certificate is as follows:
  7625.     Certificate Subject
  7626.     Certificate Issuer
  7627.     Distinguished Name
  7628.     Common name:
  7629. SubjCommonName
  7630. SubjCommonName[<SIZE=30 MAXLENGTH=30>]
  7631. IssCommonName
  7632. IssCommonName[<SIZE=30 MAXLENGTH=30>]
  7633.     Organization:
  7634. SubjOrganization
  7635. SubjOrganization[<SIZE=30 MAXLENGTH=30>]
  7636. IssOrganization
  7637. IssOrganization[<SIZE=30 MAXLENGTH=30>]
  7638.     Organizational unit:
  7639. SubjOrgUnit
  7640. SubjOrgUnit
  7641. IssOrgUnit
  7642. IssOrgUnit
  7643.     City or locality:
  7644. SubjCity
  7645. SubjCity[<SIZE=30 MAXLENGTH=70>]
  7646. IssCity
  7647. IssCity[<SIZE=30 MAXLENGTH=70>]
  7648.     State or province:
  7649. SubjState
  7650. SubjState
  7651. IssState
  7652. IssState
  7653.     Country:
  7654. SubjCountry
  7655. SubjCountry
  7656. IssCountry
  7657. IssCountry
  7658.     Validity Dates
  7659.     Start:
  7660. ValidBegDate
  7661. ValidBegDate
  7662.     End:
  7663. ValidEndDate
  7664. ValidEndDate
  7665.     [<br>]If you need to contact the Certificate Authority about this certificate, specify the Pickup ID.
  7666.     Pickup ID:
  7667. PickupID
  7668.     [<br>]Copy the certificate to the clipboard: 
  7669.     The certificate is provided below in PKCS format.  To copy the certificate to the clipboard, 
  7670.     select all the text below, including the BEGIN and END lines, and press CTRL+C.  
  7671.     Note:
  7672.       After copying this certificate, the next step is to choose "Install Certificate Into Key Ring" in the Server Certificate Administration application.
  7673. PickupCertificate
  7674. PickupCertificate
  7675. [CertAppDesigner]
  7676.     1S6S7S
  7677.     Hidden fields:
  7678.     Approved: 
  7679. Approved
  7680.     Request type: 
  7681. RequestType
  7682.     Query Open Agent:  
  7683. FormatPickupCertificate
  7684. $$QueryOpenAgent
  7685. Categori_ze
  7686. _Edit Document
  7687. Send Docu_ment
  7688. _Forward
  7689. _Move To Folder...
  7690. _Remove From Folder
  7691. O=Lotus Notes
  7692. O=Lotus Notes
  7693. PURSAFO
  7694. |.:#U
  7695. O=Lotus Notes
  7696. CN=Lotus Notes Template Development/O=Lotus Notes
  7697. PURSAFO
  7698. Fde!f^^
  7699. Untitled
  7700. Untitled2
  7701. ValidFrom
  7702. ValidTo
  7703. ValidDays
  7704. $TITLE
  7705. $FormUsers
  7706. $Info
  7707. $WindowTitle
  7708. $$Script_O
  7709. $$ScriptName
  7710. $$PickupCertificate
  7711. $PickupCertificate_O
  7712. $Body
  7713. $ACTIONS
  7714. Certificate Authority Trusted Root Certificate
  7715. &Arial
  7716. 5Courier New
  7717.  CertPickupCA
  7718. Pick Up Certificate Authority Trusted Root Certificate
  7719.     Use this form to pick up the Certificate Authority certificate so you can install it as a Trusted Root in the key ring on your server.
  7720.     [<br>]The information contained in the Certificate Authority certificate is as follows:
  7721.     Common name:
  7722. CommonName
  7723. CommonName[<SIZE=30 MAXLENGTH=30>]
  7724.     Organization:
  7725. Org[<SIZE=30 MAXLENGTH=30>]
  7726.     Organizational unit:
  7727. OrgUnit
  7728. OrgUnit
  7729.     City or locality:
  7730. Locality
  7731. Locality[<SIZE=30 MAXLENGTH=70>]
  7732.     State or province:
  7733. State
  7734. State
  7735.     Country:
  7736. Country
  7737. Country
  7738.     [<br>]Copy the CA certificate to the clipboard:
  7739.     The CA certificate is provided below in PKCS format.  To copy the certificate to the clipboard, select all the text below, including the BEGIN and END lines, and press CTRL+C.  
  7740.     Note:
  7741.       After copying the certificate, the next step is to go to the Server Certificate Administration application and choose "Install Trusted Root Certificate into Key Ring".
  7742. PickupCertificate
  7743. PickupCertificate
  7744. [CertAppDesigner]
  7745.     1S6S7S
  7746.     Hidden fields:
  7747.     Query Open Agent:  
  7748. FormatPickupCertificate
  7749. $$QueryOpenAgent
  7750. Categori_zeK
  7751. _Edit Document
  7752. Send Docu_ment
  7753. _Forward
  7754. _Move To Folder...
  7755. _Remove From FolderK
  7756. O=Lotus Notes
  7757. O=Lotus Notes
  7758. PURSAFO
  7759. |.:#U
  7760. O=Lotus Notes
  7761. CN=Lotus Notes Template Development/O=Lotus Notes
  7762. PURSAFO
  7763. Fde!f^^
  7764. Untitled
  7765. Untitled2
  7766. ValidFrom
  7767. ValidTo
  7768. ValidDays
  7769. ValidBegDate
  7770. ValidEndDate
  7771. $TITLE
  7772. $FormUsers
  7773. $Info
  7774. $WindowTitle
  7775. $$ScriptName
  7776. $Body
  7777. $ACTIONS
  7778. WebPageForIndexFrame
  7779.     Hidden fields:  
  7780.     The Page Title below doesn't appear in a browser.  Use it to identify the
  7781.     page in the Web Pages view, and for the Document name in URLs.
  7782.     Page Title 
  7783. PrivateTitle
  7784.     This form is used for the Index Frame
  7785.  .)A6
  7786. x{s[DC)C
  7787. UBU/9
  7788. rsa`C)
  7789. -#0#0#$
  7790. {a`VA)
  7791. 6U/U/9/
  7792. WAV6U/
  7793. {aYA6m
  7794. WVAV6U/B
  7795. -#0p0p#-
  7796.  .)AdVAVA`W`
  7797. AVd6U
  7798. k>Z;>')
  7799. AVWA`A
  7800.  .)6AVW`W
  7801. W`WVWAV
  7802. W`WVWAV
  7803. VA`WVWA
  7804. f`fY`
  7805. `WVW`
  7806. AWV`A
  7807. sas{S
  7808. .)A6A
  7809. W`WA`
  7810. W`W`W[D[
  7811. A`WVAW
  7812. W`W[W`
  7813. hke>z
  7814. IK,<&%,
  7815. `W`W`W`A
  7816. `WD[D[`[`
  7817. ;#$>0$#;
  7818. 0%X<@
  7819.  .)VA
  7820. #;>;#T
  7821. >E;Z\?
  7822.  .)A6A
  7823. W[W`W[
  7824. [b[][]b[b
  7825. [`[`[
  7826. W[D`D`[
  7827. b[b[]b[b
  7828. >C>C>
  7829. Z;>T1!
  7830. D`D`D
  7831. [W[`[
  7832. `[`D`
  7833. b[hbD
  7834. a[Y`W
  7835. WCW`[a
  7836. [`D`D
  7837. D[`W[
  7838. bD]D]D
  7839. AVAV`W
  7840. [`D`[`[W[W[W
  7841. ])DiD][bsa{
  7842. {aYVA6
  7843. D`D`D
  7844. [b[bhDiED]
  7845. m>CECE
  7846. }z]bs
  7847. a[a`V). 
  7848.  !)AVA
  7849. `[`h[W
  7850. dmAmCm
  7851. DEi][ba{x
  7852. }\Z]s
  7853. h`[D`[W`D`[
  7854. asab]DEDE]
  7855. s[s[`A) 
  7856. `D`[W
  7857. h`D`h[`
  7858. Ch[ar
  7859. E.Db[sr
  7860.  .)AV`W
  7861. [`[`[W[`h`[`W
  7862. T>'>CDh
  7863. Di]bs{x
  7864. b    a[a`A) 
  7865. [`[`[W[`D`[W
  7866. CmemT>'
  7867. `W`[`D[
  7868. D[{r{rsasbh]
  7869. basaYVd).
  7870. [`[`[D[W[`W
  7871. '$>$#>Eh[s
  7872. [b]iED][bsa
  7873. [`[`W`[`
  7874. >    $>0;>D]
  7875. sab[]
  7876. ][asr{
  7877. Y`6d. 
  7878. [`[W[h[h[`[h
  7879. dUmdWAem>T
  7880. $>$0>;ED[{r
  7881. r{rsab[]EDiD]
  7882. [S9DE
  7883. EzPQ\mNHmeP
  7884. `Vd. 
  7885. $0$0>
  7886. ;Ei[{
  7887. abDEDE]h
  7888. ZiZ>i
  7889. 0p0?p
  7890. ;>zDba{
  7891. 1'>E]s
  7892. `V). 
  7893. fWe>;
  7894. {rsa[bD
  7895. W[WhW
  7896. !CA[s
  7897. srsrsra
  7898.  .)A`W`h
  7899. ;Z>Dbar{
  7900. asa[h
  7901. e    CeCD>E>T'
  7902.  !)Yr
  7903. .)AVW`
  7904. f`eD>
  7905. YV6. 
  7906.  .)AV
  7907. p    ;Zihsrx{r
  7908. Y`Y`f`
  7909. YVd. 
  7910. hD>DCW[
  7911. ?Z;E]a{
  7912. Y`Yw`f`wYw
  7913. U)U)Q
  7914. W`[hD>
  7915. 0p?0Z;ZEDba
  7916. a[a[W
  7917. wfwUd
  7918. QdQdU)
  7919. YwV6)
  7920. eWhD>z;Z
  7921. p?0?0Z;ED[ar
  7922. [`[WC
  7923. fVfwfw
  7924. Q)(Q)
  7925. ACmC!
  7926. Y    wVUd)Q).)
  7927. 0?0p?Z;ZEDh
  7928. [`[Whe
  7929. eWV`V
  7930. wfUfUfB
  7931. DCDCEz
  7932. ;    p0?p?p?0?
  7933. `[`WeC
  7934. mWVwfV
  7935. U    wUf
  7936. Y`wdU
  7937. 0?p0Z;
  7938. D[a[`[
  7939. Q(Q(8(
  7940. `wfwVd6
  7941. p?p?0pZ
  7942. (QP"8
  7943. ;Z>EDh`[
  7944. "P"P"
  7945. 6QUQ)QU)
  7946. p?p?p?p0
  7947. QdQ(.("P
  7948. )Q.Q)(.Q
  7949. Z>E>E;Z0?0?p0p0?p
  7950. edWmC
  7951. .)VYx
  7952. .    )A6`ar
  7953. P"(."Q
  7954. ;>E>z;Z;?0?p0p0p
  7955. >DCeC
  7956. )    AV`asx
  7957. 8(P8P"
  7958. p0?p0p?p0p0p;
  7959. TImdmUmUmUdUd
  7960. UdU)Q(.
  7961. (A6W[sar
  7962. Z>E;>;Z
  7963. z>D>C>C
  7964. IdmUd
  7965. .)6A`
  7966. )))111999JJJZZZccckkksss{{{
  7967. kccRJJkZZRBB{ZZsRRkJJ{ZRR91J1)B)!1
  7968. ZJ{RB
  7969. skJ91{ZJ
  7970. ZBR1!ZJB
  7971. cJscZ
  7972. Z9!9!
  7973. kRcB)R1
  7974. c9sJ){J!sB
  7975. kR{cJ
  7976. {RcJ1
  7977. Z1{R)J1
  7978. c{Z1sR)
  7979. k1{R!sJ
  7980. JRkRZ{RZ
  7981. kk{119
  7982. 99JRRkJJcZZ{RRsJJkBBcRR{ZR
  7983. ZR{RJkcZ{RJcJBZcR
  7984. cZsB9RRJZJBRkZscRk
  7985. {k{scsJ9JkRksZkkRckRZsRZ
  7986. _IW4W
  7987. <font size=2 face="arial">"
  7988. <br><a href="/"
  7989. /CertRequestServer?OpenForm&SpecialAction=RequestAction" target="ContentsFrame"> <b>Request Server Certificate</b> </a>    <br><br><a href="/
  7990. /WebCertPickup?OpenForm" target="ContentsFrame"> <b>Pick Up Certificate</b> </a>     <br><br><a href="/
  7991. /CAPickup/CACert?OpenDocument" target="ContentsFrame"> <b>Accept This Authority In Your Server</b></a>    <br><br><a href="/"
  7992. /CABPickup/CACert?OpenDocument" target="ContentsFrame"> <b>Accept This Authority In Your Browser</b></a>    <br><br><hr width="80%">  <a href="/"
  7993. /CertSubmit?OpenForm&SpecialAction=RequestAction" target="ContentsFrame"> <b>Register Browser Certificate In Address Book</b></a>
  7994. </font>
  7995.     5S6S10S13S14S15S16S20S23S24S25S26S30S33S34S35S36S40S43S44S45S46S50S53S54SPassthroughHTML
  7996. O=Lotus Notes
  7997. O=Lotus Notes
  7998. PURSAFO
  7999. |.:#U
  8000. O=Lotus Notes
  8001. CN=Lotus Notes Template Development/O=Lotus Notes
  8002. PURSAFO
  8003. Fde!f^^
  8004. $TITLE
  8005. $FormUsers
  8006. $NoBackgroundOverride
  8007. $Info
  8008. $$Script_O
  8009. $$ScriptName
  8010. $Body
  8011. System\Certificates for Pickup|Pickup
  8012. PickupID$1RequestTypeCommonNameOrgEMail$Conflict$REF
  8013. CertRequest
  8014. Approved
  8015.     L1S5S7S8S9S10S
  8016. PickupIDPickup ID$1Created
  8017. RequestTypeTypeCommonNameNameOrgOrganizationEMailEMail&
  8018. CertPickup
  8019. RequestType
  8020.     1S2S
  8021. Certificates awaiting PickupY
  8022. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#####################################################
  8023. Cert Request DeniedCertRequestDenied
  8024. [CAPrivlegedUser][CAPrivlegedUser]CD
  8025. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#############################
  8026. DlgConfirmResubmitRegReq1CD
  8027. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes############
  8028. Submitted Certificate RejectedCertSubmitRejected
  8029. [CAPrivlegedUser][CAPrivlegedUser]DC
  8030. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#
  8031. DlgConfirmNotesSubmitCertReqC
  8032. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##########################################################
  8033. FormatPickupCertificate
  8034. CN=Scott Davidson/O=IrisCN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus NotesfL3
  8035. ########
  8036. Application ProfileCAProfile[CAPrivlegedUser]
  8037. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##########################
  8038. Web CA Pickup OutputCAOut[CAPrivlegedUser]CD
  8039. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes###########
  8040. ##########################################################
  8041. ##########################################################
  8042. ##########################################################
  8043. Categori_ze
  8044. _Edit Document
  8045. Send Docu_ment
  8046. _Forward
  8047. _Move To Folder...
  8048. _Remove From Foldert
  8049. View Certificate Requests Waiting for Approval6
  8050. CertificateRequests
  8051. View Denied Certificate Requests<
  8052. CertificateRequestsDenied
  8053. O=Lotus Notes
  8054. O=Lotus Notes
  8055. PURSAFO
  8056. |.:#U
  8057. O=Lotus Notes
  8058. CN=Lotus Notes Template Development/O=Lotus Notes
  8059. PURSAFO
  8060. Fde!f^^
  8061. $TITLE
  8062. $Index
  8063. $Formula
  8064. $FormulaClass
  8065. $ViewFormat
  8066. $FormFormula
  8067. $Comment
  8068. $ACTIONS
  8069. DlgConfirmResubmitCertReq
  8070. Request Resubmitted
  8071.     The request has been resubmitted to the "Certificate Requests Waiting for Approval" view.
  8072. O=Lotus Notes
  8073. O=Lotus Notes
  8074. PURSAFO
  8075. |.:#U
  8076. O=Lotus Notes
  8077. CN=Lotus Notes Template Development/O=Lotus Notes
  8078. PURSAFO
  8079. Fde!f^^
  8080. HBF7?
  8081. $TITLE
  8082. $NoBackgroundOverride
  8083. $Info
  8084. $$ScriptName
  8085. $Body
  8086. Denied Certificate Request
  8087. 5Courier New
  8088.  CertRequestDenied
  8089. Denied Certificate Request
  8090.     The certificate request below has been denied. The certificate information is provided below for reference.
  8091.     Reason for denial of this request
  8092.     Quick Help
  8093. Reason
  8094. '++LotusScript Development Environment:2:5:(Options):0:74
  8095. Use "CertLib"
  8096. '++LotusScript Development Environment:2:5:(Forward):0:1
  8097. Declare Sub Click(Source As Button)
  8098. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8099. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8100. Private Sub BindEvents(Byval Objectname_ As String)
  8101.      Static Source As BUTTON
  8102.      Set Source = Bind(Objectname_)
  8103.      On Event Click From Source Call Click
  8104. End Sub
  8105. '++LotusScript Development Environment:2:2:Click:1:12
  8106. Sub Click(Source As Button)
  8107.      Dim workspace As New NotesUIWorkspace
  8108.      Dim uidoc As NotesUIDocument
  8109.      Dim doc As NotesDocument
  8110.      Set uidoc = workspace.CurrentDocument
  8111.      Set doc = uidoc.Document
  8112.      
  8113.      ok = ResubmitRequest(doc)
  8114.      If ok Then flag% = workspace.DialogBox("DlgConfirmResubmitCertReq",True,True,True,False,False,False)
  8115.      
  8116.      Call uidoc.Close
  8117.      Call workspace.ViewRefresh()
  8118. End Sub
  8119. New Button
  8120. Need a newer version of Notes to execute this button.
  8121.     0S0E
  8122.     Resubmit
  8123.     You can resubmit this request into the "Waiting for Approval" view in order to reconsider it for approval without requiring the requestor to resubmit it.
  8124.     Contact Information
  8125.     Full Name
  8126. ContactName
  8127. ContactName
  8128.     E-Mail Address
  8129. EMail
  8130. EMail[<SIZE=30 MAXLENGTH=70>]
  8131.     Phone Number
  8132. Phone
  8133. Phone
  8134.     Comments
  8135. Comments
  8136. Comments
  8137.     Certificate Information
  8138.     Common Name
  8139. CommonName
  8140. CommonName[<SIZE=30 MAXLENGTH=30>]
  8141.     Organization
  8142. Org[<SIZE=30 MAXLENGTH=30>]
  8143.     Organizational Unit
  8144. OrgUnit
  8145. OrgUnit
  8146.     Locality
  8147. Locality
  8148. Locality[<SIZE=30 MAXLENGTH=70>]
  8149.     State of Province
  8150. State
  8151. State
  8152.     Country
  8153. Country
  8154. Country
  8155. [CertAppDesigner]
  8156.     1S6S7S
  8157.     Hidden fields:
  8158.     Approved:  
  8159. Approved
  8160.     Request type: 
  8161. RequestType
  8162.     Certificate request:
  8163. Certificate
  8164. Categori_ze
  8165. _Edit Document
  8166. Send Docu_ment
  8167. _Forward
  8168. _Move To Folder...
  8169. _Remove From Folder_
  8170. O=Lotus Notes
  8171. O=Lotus Notes
  8172. PURSAFO
  8173. |.:#U
  8174. O=Lotus Notes
  8175. CN=Lotus Notes Template Development/O=Lotus Notes
  8176. PURSAFO
  8177. Fde!f^^
  8178. CdeUJ
  8179. Untitled
  8180. Untitled2
  8181. ValidFrom
  8182. ValidTo
  8183. $TITLE
  8184. $Readers
  8185. $FormUsers
  8186. $Info
  8187. $WindowTitle
  8188. $$Script_O
  8189. $$ScriptName
  8190. $Body
  8191. $ACTIONS
  8192. DlgConfirmResubmitRegReq
  8193. Request Resubmitted
  8194.     The request has been resubmitted to the "Certificate Registraton Requests" view.
  8195. O=Lotus Notes
  8196. O=Lotus Notes
  8197. PURSAFO
  8198. |.:#U
  8199. O=Lotus Notes
  8200. CN=Lotus Notes Template Development/O=Lotus Notes
  8201. PURSAFO
  8202. Fde!f^^
  8203. $TITLE
  8204. $NoBackgroundOverride
  8205. $Info
  8206. $$ScriptName
  8207. $Body
  8208. Rejected Certificate Registration
  8209. 5Courier New
  8210.  CertSubmitRejected
  8211. Rejected Certificate Registration
  8212.     This certificate registration request was been denied.
  8213.     Reason for denial of this request
  8214.     Quick Help
  8215. Reason
  8216. '++LotusScript Development Environment:2:5:(Options):0:74
  8217. Use "CertLib"
  8218. '++LotusScript Development Environment:2:5:(Forward):0:1
  8219. Declare Sub Click(Source As Button)
  8220. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8221. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8222. Private Sub BindEvents(Byval Objectname_ As String)
  8223.      Static Source As BUTTON
  8224.      Set Source = Bind(Objectname_)
  8225.      On Event Click From Source Call Click
  8226. End Sub
  8227. '++LotusScript Development Environment:2:2:Click:1:12
  8228. Sub Click(Source As Button)
  8229.      Dim workspace As New NotesUIWorkspace
  8230.      Dim uidoc As NotesUIDocument
  8231.      Dim doc As NotesDocument
  8232.      Set uidoc = workspace.CurrentDocument
  8233.      Set doc = uidoc.Document
  8234.      
  8235.      ok = ResubmitRequest(doc)
  8236.      If ok Then flag% = workspace.DialogBox("DlgConfirmResubmitRegReq",True,True,True,False,False,False)
  8237.      
  8238.      Call uidoc.Close
  8239.      Call workspace.ViewRefresh()
  8240. End Sub
  8241. New Button
  8242. Need a newer version of Notes to execute this button.
  8243.     0S0E
  8244.     Resubmit
  8245.     You can resubmit this request into the "Waiting for Approval" view in order to reconsider it for approval without requiring the requestor to resubmit it.
  8246.     Contact Information
  8247.     Full Name
  8248. ContactName
  8249. ContactName
  8250.     E-Mail Address
  8251. EMail
  8252. EMail[<SIZE=30 MAXLENGTH=70>]
  8253.     Phone Number
  8254. Phone
  8255. Phone
  8256.     Comments
  8257. Comments
  8258. Comments
  8259.     Certificate Information
  8260.     Common Name
  8261. CommonName
  8262. CommonName[<SIZE=30 MAXLENGTH=30>]
  8263.     Organization
  8264. Org[<SIZE=30 MAXLENGTH=30>]
  8265.     Organizational Unit
  8266. OrgUnit
  8267. OrgUnit
  8268.     Locality
  8269. Locality
  8270. Locality[<SIZE=30 MAXLENGTH=70>]
  8271.     State of Province
  8272. State
  8273. State
  8274.     Country
  8275. Country
  8276. Country
  8277. [CertAppDesigner]
  8278.     1S6S7S
  8279.     Hidden fields:
  8280.     Approved:  
  8281. Approved
  8282.     Request type: 
  8283. RequestType
  8284.     Certificate request:
  8285. Certificate
  8286. Categori_ze
  8287. _Edit Document
  8288. Send Docu_ment
  8289. _Forward
  8290. _Move To Folder...
  8291. _Remove From Folder_
  8292. O=Lotus Notes
  8293. O=Lotus Notes
  8294. PURSAFO
  8295. |.:#U
  8296. O=Lotus Notes
  8297. CN=Lotus Notes Template Development/O=Lotus Notes
  8298. PURSAFO
  8299. Fde!f^^
  8300. ]>'e~X
  8301. Untitled
  8302. Untitled2
  8303. ValidFrom
  8304. ValidTo
  8305. ValidBegDate
  8306. ValidEndDate
  8307. $TITLE
  8308. $Readers
  8309. $FormUsers
  8310. $Info
  8311. $WindowTitle
  8312. $$Script_O
  8313. $$ScriptName
  8314. $Body
  8315. $ACTIONS
  8316. Keyring Created
  8317. DlgConfirmNotesSubmitCertReq
  8318.     The certificate request has been submitted.
  8319.     The information in the request is as follows:
  8320.     Common name:
  8321. CommonName
  8322. CommonName
  8323.     Organization:
  8324.     Organizational unit:
  8325. OrgUnit
  8326. OrgUnit
  8327.     State:
  8328.     City:
  8329. State
  8330. State
  8331. Locality
  8332. Locality
  8333.     Next Step:
  8334.     Go to the Certificate Requests view as the Certificate Authority and approve the request.
  8335.     Country:
  8336. Country
  8337. Country
  8338. O=Lotus Notes
  8339. O=Lotus Notes
  8340. PURSAFO
  8341. |.:#U
  8342. O=Lotus Notes
  8343. CN=Lotus Notes Template Development/O=Lotus Notes
  8344. PURSAFO
  8345. Fde!f^^
  8346. $TITLE
  8347. $Info
  8348. $WindowTitle
  8349. $$ScriptName
  8350. $Body
  8351. Started running agent 'FormatPickupCertificate' on 07/21/97 04:05:30 PM
  8352. Ran LotusScript code
  8353. Done running agent 'FormatPickupCertificate' on 07/21/97 04:05:30 PM
  8354. '++LotusScript Development Environment:2:5:(Options):0:74
  8355. Option Public
  8356. Use "CertLib"
  8357. '++LotusScript Development Environment:2:5:(Forward):0:1
  8358. Declare Sub Initialize
  8359. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8360. '++LotusScript Development Environment:2:2:Initialize:1:10
  8361. Sub Initialize
  8362.      ' This assume you have a field Certificate which contains the cert as one long base64 
  8363.      ' encoded line.  It loads up a multi-value text field called PickupCertificate with a copy 
  8364.      ' of this broken into lines of manageable size with the beg and end tag lines.
  8365.      '
  8366.      Dim session As New NotesSession
  8367.      Dim doc As NotesDocument
  8368.      Dim itm As NotesItem
  8369.      
  8370.      Set doc = session.DocumentContext
  8371.      Call CertToPickupCert(doc)
  8372.      
  8373. End Sub
  8374. O=Lotus Notes
  8375. O=Lotus Notes
  8376. PURSAFO
  8377. |.:#U
  8378. O=Lotus Notes
  8379. CN=Lotus Notes Template Development/O=Lotus Notes
  8380. PURSAFO
  8381. Fde!f^^
  8382. lGrMKq_
  8383. $TITLE
  8384. $AssistType
  8385. $AssistLastRun
  8386. $AssistDocCount
  8387. $AssistFlags
  8388. $AssistTrigger
  8389. $AssistInfo
  8390. $AssistQuery
  8391. $AssistAction
  8392. $AssistAction_Ex
  8393. $PublicAccess
  8394. System\CA Certificate|CAPickup
  8395. PickupID$1RequestTypeCommonNameOrgEMail$Conflict$REF
  8396. CACert
  8397.     L1S2S3S1
  8398. PickupID$1
  8399. PickupID$1Created
  8400. RequestTypeTypeCommonNameNameOrgOrganizationEMailEMail&
  8401. CertPickupCA
  8402. Certificate Authority Certificate for PickupY
  8403. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################################
  8404. Cert Request ApprovalCertRequestApproval[CAPrivlegedUser]CD
  8405. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes
  8406. ##########################################################
  8407. Web CA Certificate Browser PickupCACertBrowser[CAPrivlegedUser]CD
  8408. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################
  8409. System\CA Certificate for Browsers|CABPickup
  8410. PickupID$1RequestTypeCommonNameOrgEMail$Conflict$REF
  8411. CACert
  8412.     L1S2S3S1
  8413. PickupID$1
  8414. PickupID$1Created
  8415. RequestTypeTypeCommonNameNameOrgOrganizationEMailEMail&
  8416. CACertBrowser
  8417. Certificate Authority Certificate for PickupY
  8418. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##############################
  8419. Default[CAPrivlegedUser]CD
  8420. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#############################################
  8421. MkX"V[/m
  8422. WebPageFrameTopFrames - Top-level Definition
  8423. CN=Michael Decoteau/O=IrisCN=Scott Davidson/O=IrisCN=Andrew Wharton/O=Iris
  8424. ######################################
  8425. O=Lotus Notes
  8426. O=Lotus Notes
  8427. PURSAFO
  8428. |.:#U
  8429. O=Lotus Notes
  8430. CN=Lotus Notes Template Development/O=Lotus Notes
  8431. PURSAFO
  8432. Fde!f^^
  8433. $TITLE
  8434. $Index
  8435. $Formula
  8436. $FormulaClass
  8437. $ViewFormat
  8438. $FormFormula
  8439. $Comment
  8440. Certificate Authority Profile
  8441.  CAProfile
  8442. Certificate Authority Profile
  8443.     Use this form to configure settings needed by the Certificate Authority application.
  8444.     CA Settings
  8445.     Quick Help
  8446.     CA Key File
  8447. CAKeyFileName of CA key ring file to use. Include path if file is not in the data directory.
  8448.     - The name of the CA key file is stored here automatically when you create it.  
  8449.     Certificate Server DNS Name
  8450. CASiteUrlHost name or IP address to use in e-mail notifications for signed server certificates (i.e. Server.Acme.Com)
  8451.     - The DNS for the server is needed for the automatic generation of the URL for certificate pickup.
  8452.     Save & Close
  8453. O=Lotus Notes
  8454. O=Lotus Notes
  8455. PURSAFO
  8456. |.:#U
  8457. O=Lotus Notes
  8458. CN=Lotus Notes Template Development/O=Lotus Notes
  8459. PURSAFO
  8460. Fde!f^^
  8461. 2BENO7
  8462. $TITLE
  8463. $FormUsers
  8464. $Info
  8465. $WindowTitle
  8466. $$ScriptName
  8467. $Body
  8468. Certificate Request Approval
  8469. 5Courier New
  8470. '++LotusScript Development Environment:2:5:(Options):0:74
  8471. Option Public
  8472. '++LotusScript Development Environment:2:5:(Forward):0:1
  8473. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8474.  CertRequestApproval'++LotusScript Development Environment:2:5:(Options):0:74
  8475. Use "CertLib"
  8476. '++LotusScript Development Environment:2:5:(Forward):0:1
  8477. '++LotusScript Development Environment:2:5:(Declarations):0:10
  8478. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8479. Private Sub BindEvents(Byval Objectname_ As String)
  8480.      Static Source As NOTESUIDOCUMENT
  8481.      Set Source = Bind(Objectname_)
  8482. End Sub
  8483. Certificate Request Approval
  8484.     Use this form to review a certificate request and approve or deny it.
  8485.     Contact Information
  8486.     Quick Help
  8487.     Full Name
  8488. ContactName
  8489. ContactName
  8490.     E-Mail Address
  8491. EMail
  8492. EMail[<SIZE=30 MAXLENGTH=70>]
  8493.     Phone Number
  8494. Phone
  8495. Phone
  8496.     Comments
  8497. Comments
  8498. Comments
  8499.     This is the contact information provided by the user.
  8500.     Certificate Information
  8501.     Common Name
  8502. CommonName
  8503. CommonName[<SIZE=30 MAXLENGTH=30>]
  8504.     Organization
  8505. Org[<SIZE=30 MAXLENGTH=30>]
  8506.     Organizational Unit
  8507. OrgUnit
  8508. OrgUnit
  8509.     Locality
  8510. Locality
  8511. Locality[<SIZE=30 MAXLENGTH=70>]
  8512.     State or Province
  8513. State
  8514. State
  8515.     Country
  8516. Country
  8517. Country
  8518.     This is the Distinguished Name information provided in the certificate request.
  8519.     Choose an Action for this Request
  8520. SendEmail
  8521. Send a notification email to the requestor | 1
  8522.     Choose the action you want to take for this request.
  8523.     Approve
  8524.     Validity Period
  8525. ValidPeriod
  8526. ValidUnit
  8527. Years | 365Days | 1
  8528.     Pickup ID
  8529. PickupID
  8530.     Approve the Request
  8531. '++LotusScript Development Environment:2:5:(Options):0:74
  8532. Use "CertLib"
  8533. '++LotusScript Development Environment:2:5:(Forward):0:1
  8534. Declare Sub Click(Source As Button)
  8535. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8536. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8537. Private Sub BindEvents(Byval Objectname_ As String)
  8538.      Static Source As BUTTON
  8539.      Set Source = Bind(Objectname_)
  8540.      On Event Click From Source Call Click
  8541. End Sub
  8542. '++LotusScript Development Environment:2:2:Click:1:12
  8543. Sub Click(Source As Button)
  8544.      Dim ws As New NotesUIWorkspace
  8545.      Dim db As NotesDatabase
  8546.      Dim uidoc As NotesUIDocument
  8547.      Dim doc As NotesDocument
  8548.      Set uidoc = ws.CurrentDocument
  8549.      Set db = uidoc.Document.ParentDatabase
  8550.      Set doc = uidoc.Document
  8551.      '
  8552.      uidoc.Refresh ' so that ValidDays is recomputed based on user input
  8553.      '
  8554.      Dim prof As NotesDocument
  8555.      Set prof = db.GetProfileDocument("CAProfile")
  8556.      '
  8557.      CAKeyFile$ = prof.CAKeyFile(0)
  8558.      If Isempty(CAKeyFile$) Then CAKeyFile$ = Inputbox(GetString(ids_KeyFilePrompt), GetString(ids_KeyFileTitle)) 
  8559.      Password$ = Inputbox(GetString1(ids_PasswordPrompt, CAKeyFile$), GetString(ids_PasswordTitle))
  8560.      
  8561.      DNSName$ = prof.CASiteUrl(0)
  8562.      If DNSName$ = "" Then
  8563.           DNSName$ = Inputbox(GetString(ids_DNSPrompt), GetString(ids_DNSTitle))
  8564.           prof.CASiteUrl = DNSName$
  8565.           Call prof.Save(True, False)
  8566.      End If
  8567.      
  8568.      ok = ApproveCertificateRequest(doc, FixFileName(CAKeyFile$), Password$)
  8569.      If Not ok Then Messagebox GetString(err_ApprovalFailed)
  8570.      
  8571.      Call uidoc.Save
  8572.      Call uidoc.Close
  8573.      
  8574. End Sub
  8575. New Button
  8576. Need a newer version of Notes to execute this button.
  8577.     0S0E
  8578.     Approve
  8579.     Deny
  8580.     Reason
  8581. Reason
  8582.     You can specify a reason for the denial for your records.
  8583.     Deny the Request
  8584. '++LotusScript Development Environment:2:5:(Options):0:74
  8585. Use "CertLib"
  8586. '++LotusScript Development Environment:2:5:(Forward):0:1
  8587. Declare Sub Click(Source As Button)
  8588. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8589. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8590. Private Sub BindEvents(Byval Objectname_ As String)
  8591.      Static Source As BUTTON
  8592.      Set Source = Bind(Objectname_)
  8593.      On Event Click From Source Call Click
  8594. End Sub
  8595. '++LotusScript Development Environment:2:2:Click:1:12
  8596. Sub Click(Source As Button)
  8597.      Dim workspace As New NotesUIWorkspace
  8598.      Dim uidoc As NotesUIDocument
  8599.      Dim doc As NotesDocument
  8600.      Set uidoc = workspace.CurrentDocument
  8601.      Set doc = uidoc.Document
  8602.      
  8603.      ok = DenyCertificateRequest(doc)
  8604.      If Not ok Then Messagebox GetString(err_DenyFailed)
  8605.      
  8606.      Call uidoc.Save
  8607.      Call uidoc.Close
  8608. End Sub
  8609. New Button
  8610. Need a newer version of Notes to execute this button.
  8611.     0S0E
  8612.     Deny
  8613. [CertAppDesigner]
  8614.     1S6S7S
  8615.     Hidden fields:
  8616.     Approved:  
  8617. Approved
  8618.     Request type:  
  8619. RequestType
  8620.     Valid Days: 
  8621. ValidPeriod
  8622. ValidUnit
  8623.     3S4S7S
  8624. ValidDays
  8625.     Certificate:
  8626. Certificate
  8627. O=Lotus Notes
  8628. O=Lotus Notes
  8629. PURSAFO
  8630. |.:#U
  8631. O=Lotus Notes
  8632. CN=Lotus Notes Template Development/O=Lotus Notes
  8633. PURSAFO
  8634. Fde!f^^
  8635. b"P _S
  8636. Untitled
  8637. Untitled2
  8638. ValidFrom
  8639. ValidTo
  8640. $TITLE
  8641. $FormUsers
  8642. $Info
  8643. $WindowTitle
  8644. $Script
  8645. $$Script_O
  8646. $$ScriptName
  8647. $$FormScript
  8648. $$$FormScript_O
  8649. ValidPeriod
  8650. $Body
  8651. &Arial
  8652.  CAOut
  8653. Accept This Authority in Your Browser
  8654.     Your browser should now recognize this Certificate Authority.
  8655. O=Lotus Notes
  8656. O=Lotus Notes
  8657. PURSAFO
  8658. |.:#U
  8659. O=Lotus Notes
  8660. CN=Lotus Notes Template Development/O=Lotus Notes
  8661. PURSAFO
  8662. Fde!f^^
  8663. Z@p7V`F
  8664. Untitled
  8665. Untitled2
  8666. ValidFrom
  8667. ValidTo
  8668. $TITLE
  8669. $FormUsers
  8670. $Info
  8671. $$ScriptName
  8672. $Body
  8673. Certificate Authority Trusted Root Certificate
  8674. &Arial
  8675.  CACertBrowser
  8676. Trust This Authority in Your Browser
  8677.     In order to access a server that is running SSL with a certificate that has been signed by this Certificate Authority, you need to indicate in your Web browser that you trust this Certificate Authority. 
  8678.     [<br>]The information contained in the Certificate Authority certificate is as follows:
  8679.     Common name:
  8680. CommonName
  8681. CommonName[<SIZE=30 MAXLENGTH=30>]
  8682.     Organization:
  8683. Org[<SIZE=30 MAXLENGTH=30>]
  8684.     Organizational unit:
  8685. OrgUnit
  8686. OrgUnit
  8687.     City or locality:
  8688. Locality
  8689. Locality[<SIZE=30 MAXLENGTH=70>]
  8690.     State or province:
  8691. State
  8692. State
  8693.     Country:
  8694. Country
  8695. Country
  8696.     [<br>]
  8697. /CAOut?RequestCert&PickupCACert&PickupId=
  8698.     3S4S8S11S12S13S18S
  8699.     Accept This Authority in Your Browser
  8700. Categori_zeK
  8701. _Edit Document
  8702. Send Docu_ment
  8703. _Forward
  8704. _Move To Folder...
  8705. _Remove From FolderK
  8706. O=Lotus Notes
  8707. O=Lotus Notes
  8708. PURSAFO
  8709. |.:#U
  8710. O=Lotus Notes
  8711. CN=Lotus Notes Template Development/O=Lotus Notes
  8712. PURSAFO
  8713. Fde!f^^
  8714. ;P9OP
  8715. Untitled
  8716. Untitled2
  8717. ValidFrom
  8718. ValidTo
  8719. ValidDays
  8720. ValidBegDate
  8721. ValidEndDate
  8722. $TITLE
  8723. $FormUsers
  8724. $Info
  8725. $WindowTitle
  8726. $$ScriptName
  8727. $Body
  8728. $ACTIONS
  8729. O=Lotus Notes
  8730. O=Lotus Notes
  8731. PURSAFO
  8732. |.:#U
  8733. O=Lotus Notes
  8734. CN=Lotus Notes Template Development/O=Lotus Notes
  8735. PURSAFO
  8736. Fde!f^^
  8737. $TITLE
  8738. $Index
  8739. $Formula
  8740. $FormulaClass
  8741. $ViewFormat
  8742. $FormFormula
  8743. $Comment
  8744. 5Courier New
  8745. '++LotusScript Development Environment:2:5:(Options):0:74
  8746. Use "CertLib"
  8747. '++LotusScript Development Environment:2:5:(Forward):0:1
  8748. Declare Sub Initialize
  8749. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8750. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8751. Private Sub BindEvents(Byval Objectname_ As String)
  8752.      Static Source As FIELD
  8753.      Set Source = Bind(Objectname_)
  8754. End Sub
  8755. '++LotusScript Development Environment:2:2:Initialize:1:10
  8756. Sub Initialize
  8757.      
  8758. End Sub
  8759. Certificate
  8760. Default'++LotusScript Development Environment:2:5:(Options):0:74
  8761. Use "CertLib"
  8762. '++LotusScript Development Environment:2:5:(Forward):0:1
  8763. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8764. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8765. Private Sub BindEvents(Byval Objectname_ As String)
  8766.      Static Source As NOTESUIDOCUMENT
  8767.      Set Source = Bind(Objectname_)
  8768. End Sub
  8769. [CertAppDesigner]
  8770.     1S6S7S
  8771. Categori_ze?
  8772. _Edit Document
  8773. Send Docu_ment
  8774. _Forward
  8775. _Move To Folder...
  8776. _Remove From Folder
  8777. O=Lotus Notes
  8778. O=Lotus Notes
  8779. PURSAFO
  8780. |.:#U
  8781. O=Lotus Notes
  8782. CN=Lotus Notes Template Development/O=Lotus Notes
  8783. PURSAFO
  8784. Fde!f^^
  8785. 3T:QQz
  8786. Untitled
  8787. Untitled2
  8788. ValidFrom
  8789. ValidTo
  8790. ValidDays
  8791. $$PickupCertificate
  8792. $PickupCertificate_O
  8793. $TITLE
  8794. $FormUsers
  8795. $Info
  8796. $WindowTitle
  8797. $$ScriptName
  8798. $$FormScript
  8799. $$$FormScript_O
  8800. $Body
  8801. $ACTIONS
  8802. System\Default
  8803. PickupID$1RequestTypeCommonNameOrgEMail$Conflict$REF
  8804. CACert
  8805.     L1S2S3S1
  8806. PickupID$1
  8807. PickupID$1Created
  8808. RequestTypeTypeCommonNameNameOrgOrganizationEMailEMail&
  8809. Default
  8810. Certificate Authority Certificate for PickupY
  8811. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##########################################################
  8812. Submitted Certificate AcceptedCertSubmitAccepted
  8813. [CAPrivlegedUser][CAPrivlegedUser]CD
  8814. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########
  8815. Submitted Certificate ApprovalCertSubmitApproval
  8816. [CAPrivlegedUser][CAPrivlegedUser]DC
  8817. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes#########################################
  8818. [CAPrivlegedUser]Submitted Certificates\Accepted|SubmittedCertificatesAccepted
  8819. $3FullNameCommonNameContactNameOrgValidEndDate$Conflict$REF
  8820. CertSubmitF
  8821. Approved
  8822.     L1S5S7S8S9S10S
  8823. $3FullNameCommonNameContactNameOrgValidEndDate
  8824. FullName
  8825. FullName
  8826. CommonName
  8827. CommonName
  8828. ContactName
  8829. ContactName
  8830. ValidEndDate
  8831. ValidEndDate
  8832. $3Created
  8833. FullNameUser NameCommonNameCommon NameContactNameContactOrgOrganizationValidEndDateExpires&
  8834. CertSubmitAccepted
  8835. CN=Michael Decoteau/O=IrisCN=Lotus Notes Template Development/O=Lotus Notes##################################################
  8836. Categori_zeK
  8837. _Edit Document
  8838. Send Docu_ment
  8839. _Forward
  8840. _Move To Folder...
  8841. _Remove From FolderK
  8842. Main Menu
  8843. CASetup
  8844.     1S4S6S
  8845. O=Lotus Notes
  8846. O=Lotus Notes
  8847. PURSAFO
  8848. |.:#U
  8849. O=Lotus Notes
  8850. CN=Lotus Notes Template Development/O=Lotus Notes
  8851. PURSAFO
  8852. Fde!f^^
  8853. $TITLE
  8854. $Index
  8855. $Formula
  8856. $FormulaClass
  8857. $ViewFormat
  8858. $FormFormula
  8859. $Comment
  8860. $ACTIONS
  8861. O=Lotus Notes
  8862. O=Lotus Notes
  8863. PURSAFO
  8864. |.:#U
  8865. O=Lotus Notes
  8866. CN=Lotus Notes Template Development/O=Lotus Notes
  8867. PURSAFO
  8868. Fde!f^^
  8869. sZ%!ZM}
  8870. $Flags
  8871. Accepted Certificate Registration
  8872. 5Courier New
  8873.  CertSubmitAccepted
  8874. CertIsDel
  8875.     1S2S
  8876. Accepted Certificate Registration
  8877.     The certificate reqistration request was approved and submitted to the Administration Process.
  8878. TempIsRoot
  8879. HideSiteCert
  8880. CertIsDel
  8881.     3S4S6S7S13S14S17S18S19S
  8882.     Contact Information
  8883.     Full Name
  8884. HideSiteCert
  8885. CertIsDel
  8886.     0S6S7S10S11S12S
  8887. ContactName
  8888. ContactName
  8889.     E-Mail Address
  8890. EMail
  8891. EMail[<SIZE=30 MAXLENGTH=70>]
  8892.     Phone Number
  8893. Phone
  8894. Phone
  8895.     Comments
  8896. Comments
  8897. Comments
  8898.     Name in Address Book
  8899.     User Name
  8900. FullName
  8901. FullName
  8902.     Certificate Information
  8903.     Certificate Subject
  8904.     Certificate Issuer
  8905.     Common Name
  8906. CommonName
  8907. CommonName[<SIZE=30 MAXLENGTH=30>]
  8908. IssuerCommonName
  8909. IssuerCommonName[<SIZE=30 MAXLENGTH=30>]
  8910.     Organization
  8911. Org[<SIZE=30 MAXLENGTH=30>]
  8912. IssuerOrg
  8913. IssuerOrg[<SIZE=30 MAXLENGTH=30>]
  8914.     Organizational Unit
  8915. OrgUnit
  8916. OrgUnit
  8917. IssuerOrgUnit
  8918. IssuerOrgUnit
  8919.     City
  8920. Locality
  8921. Locality[<SIZE=30 MAXLENGTH=70>]
  8922. IssuerLocality
  8923. IssuerLocality[<SIZE=30 MAXLENGTH=70>]
  8924.     State
  8925. State
  8926. State
  8927. IssuerState
  8928. IssuerState
  8929.     Country
  8930. Country
  8931. Country
  8932. IssuerCountry
  8933. IssueCountry
  8934.     Validity Dates
  8935.     Start
  8936. ValidBegDate
  8937. ValidBegDate
  8938. ValidEndDate
  8939. ValidEndDate
  8940. [CertAppDesigner]
  8941.     1S6S7S
  8942.     Hidden fields:
  8943.     Approved:  
  8944. Approved
  8945.     Request type: 
  8946. RequestType
  8947.     Certificate:
  8948. Certificate
  8949. Categori_ze0
  8950. _Edit Document
  8951. Send Docu_ment
  8952. _Forward
  8953. _Move To Folder...
  8954. _Remove From Folder
  8955. O=Lotus Notes
  8956. O=Lotus Notes
  8957. PURSAFO
  8958. |.:#U
  8959. O=Lotus Notes
  8960. CN=Lotus Notes Template Development/O=Lotus Notes
  8961. PURSAFO
  8962. Fde!f^^
  8963. Untitled
  8964. Untitled2
  8965. ValidFrom
  8966. ValidTo
  8967. ValidDays
  8968. $TITLE
  8969. $Readers
  8970. $FormUsers
  8971. $Info
  8972. $WindowTitle
  8973. $$Script_O
  8974. $$ScriptName
  8975. $Body
  8976. $ACTIONS
  8977. Certificate Registration Approval
  8978. 5Courier New
  8979. '++LotusScript Development Environment:2:5:(Options):0:74
  8980. Option Public
  8981. Use "CertLib"
  8982. '++LotusScript Development Environment:2:5:(Forward):0:1
  8983. '++LotusScript Development Environment:2:5:(Declarations):0:2
  8984.  CertSubmitApproval'++LotusScript Development Environment:2:5:(Options):0:74
  8985. Use "CertLib"
  8986. '++LotusScript Development Environment:2:5:(Forward):0:1
  8987. '++LotusScript Development Environment:2:5:(Declarations):0:10
  8988. '++LotusScript Development Environment:2:2:BindEvents:1:129
  8989. Private Sub BindEvents(Byval Objectname_ As String)
  8990.      Static Source As NOTESUIDOCUMENT
  8991.      Set Source = Bind(Objectname_)
  8992. End Sub
  8993. CertIsDel
  8994.     1S2S
  8995. Certificate Registration Approval
  8996. CertIsDel
  8997.     1S2S
  8998.     A certificate registration request has been submitted by a Web browser user.  Use this form to review the request and accept or reject the certificate.
  8999.     Contact Information
  9000.     Full Name
  9001. TempIsRoot
  9002. HideSiteCert
  9003. CertIsDel
  9004.     3S4S6S7S13S14S17S18S19S
  9005. ContactName
  9006. ContactName
  9007.     E-Mail Address
  9008. EMail
  9009. EMail[<SIZE=30 MAXLENGTH=70>]
  9010.     Phone Number
  9011. Phone
  9012. Phone
  9013.     Comments
  9014. Comments
  9015. Comments
  9016.     Name in Address Book
  9017.     Quick Help
  9018.     User Name
  9019. CommonName
  9020. FullName
  9021.     The User Name must match a name in the People view of the Public Address Book.   You can modify this field to assure that it matches the name of the intended user.
  9022.     Certificate Subject & Issuer
  9023.     Certificate Subject
  9024.     Certificate Issuer
  9025.     Common Name
  9026. CommonName
  9027. CommonName[<SIZE=30 MAXLENGTH=30>]
  9028. CommonName
  9029. IssuerCommonName[<SIZE=30 MAXLENGTH=30>]
  9030.     Organization
  9031. Org[<SIZE=30 MAXLENGTH=30>]
  9032. IssuerOrg[<SIZE=30 MAXLENGTH=30>]
  9033.     Organizational Unit
  9034. OrgUnit
  9035. OrgUnit
  9036. OrgUnit
  9037. IssuerOrgUnit
  9038.     City
  9039. Locality
  9040. Locality[<SIZE=30 MAXLENGTH=70>]
  9041. Locality
  9042. IssuerLocality[<SIZE=30 MAXLENGTH=70>]
  9043.     State
  9044. State
  9045. State
  9046. State
  9047. IssuerState
  9048.     Country
  9049. Country
  9050. Country
  9051. Country
  9052. IssueCountry
  9053.     Certificate Validity Dates
  9054.     Start:
  9055. ValidBegDate
  9056. ValidBegDate
  9057. ValidEndDate
  9058. ValidEndDate
  9059.     Choose an Action for this Registration Request
  9060.     Quick Help
  9061. TempIsRoot
  9062. HideSiteCert
  9063. CertIsDel
  9064.     2S3S4S6S7S13S14S17S18S19S
  9065. SendEmailSelect to send e-mail notification to the requestor
  9066. Send a notification email to the requestor | 1
  9067.     Accept
  9068. HideSiteCert
  9069. CertIsDel
  9070.     0S6S7S10S11S12S
  9071.     Accept the Request
  9072. MailSubject
  9073. Your Certificate
  9074.     1S2S
  9075. MailBody
  9076. Your client certificate has been accepted and submitted to the server's Address book.
  9077.     0R1S2S
  9078. BoxTitle
  9079. Certificate Accepted
  9080.     0R1S2S
  9081. AdminFileName
  9082. admin4.nsf
  9083. CurrentServer
  9084. CurrentServer
  9085. AdminFileName
  9086. Approved
  9087.     0R1S2S3S
  9088. DialogSubmitAccept
  9089. BoxTitle
  9090.     0R10S
  9091. SendEMail
  9092. Email
  9093. EMail
  9094. MailSubject
  9095. MailBody
  9096.     0R3S4S5S6S7S8S10S13S14S15S16S18S20S23S
  9097.     0R4S
  9098.     Accept
  9099.     Reject
  9100.     Reason
  9101. ReasonSpecify a reason for the reject decision for your records
  9102.     Reject the Request
  9103. '++LotusScript Development Environment:2:5:(Options):0:66
  9104. '++LotusScript Development Environment:2:5:(Forward):0:1
  9105. Declare Sub Click(Source As Button)
  9106. '++LotusScript Development Environment:2:5:(Declarations):0:2
  9107. '++LotusScript Development Environment:2:2:BindEvents:1:129
  9108. Private Sub BindEvents(Byval Objectname_ As String)
  9109.      Static Source As BUTTON
  9110.      Set Source = Bind(Objectname_)
  9111.      On Event Click From Source Call Click
  9112. End Sub
  9113. '++LotusScript Development Environment:2:2:Click:1:12
  9114. Sub Click(Source As Button)
  9115.      Dim workspace As New NotesUIWorkspace
  9116.      Dim uidoc As NotesUIDocument
  9117.      Dim doc As NotesDocument
  9118.      Set uidoc = workspace.CurrentDocument
  9119.      Set doc = uidoc.Document
  9120.      
  9121.      ok = RejectCertificate(doc)
  9122.      If Not ok Then Messagebox GetString(err_RejectFailed)
  9123.      
  9124.      Call uidoc.Save
  9125.      Call uidoc.Close
  9126. End Sub
  9127. New Button
  9128. Need a newer version of Notes to execute this button.
  9129.     0S0E
  9130.     Reject
  9131.     Choose an action for this request.  
  9132.     Accept:
  9133.     A request will be submitted to the Administration Process to add the certificate to the user's Person record in the Public Address Book.
  9134.     Reject:
  9135.     The certificate won't be added to the address book, but a record of the request will be maintained in the "Rejected Certificate Requests" view in this database.
  9136.     You can specify a reason for rejecting the request for your records.
  9137. [CertAppDesigner]
  9138.     1S6S7S
  9139.     Hidden fields:
  9140.     Approved:  
  9141. Approved
  9142.     Type (for adminp): 
  9143. CertSubmitApproval
  9144.     Request type: 
  9145. RequestType
  9146.     Certificate:
  9147. Certificate
  9148. O=Lotus Notes
  9149. O=Lotus Notes
  9150. PURSAFO
  9151. |.:#U
  9152. O=Lotus Notes
  9153. CN=Lotus Notes Template Development/O=Lotus Notes
  9154. PURSAFO
  9155. Fde!f^^
  9156. Untitled2
  9157. ValidFrom
  9158. ValidTo
  9159. ValidDays
  9160. $TITLE
  9161. $Readers
  9162. $FormUsers
  9163. $Info
  9164. $WindowTitle
  9165. $Script
  9166. $$Script_O
  9167. $$ScriptName
  9168. $$FormScript
  9169. $$$FormScript_O
  9170. $Body
  9171. Categori_zem
  9172. _Edit Document
  9173. Send Docu_ment
  9174. _Forward
  9175. _Move To Folder...
  9176. _Remove From Folder
  9177. View Certificate Registration Requests8
  9178. SubmittedCertificates
  9179. View Rejected Certificate Registration Requests
  9180. SubmittedCertificatesRejected
  9181. Main Menu
  9182. CASetup
  9183.     1S4S6S
  9184. O=Lotus Notes
  9185. O=Lotus Notes
  9186. PURSAFO
  9187. |.:#U
  9188. O=Lotus Notes
  9189. CN=Lotus Notes Template Development/O=Lotus Notes
  9190. PURSAFO
  9191. Fde!f^^
  9192. $Readers
  9193. $TITLE
  9194. $Index
  9195. $Formula
  9196. $FormulaClass
  9197. $ViewFormat
  9198. $FormFormula
  9199. $Comment
  9200. $ACTIONS
  9201. ed$UpdatedBy$ACLDigest$Signature$DesignVersion$Version$Formula$FormulaClass$Collation$ReplVersion$TITLE$ReplSrcServers$ReplClassMasks$ReplFormula$ReplView$ReplPrivateFolder$ReplFields$ScriptLib$ScriptLib_O$Flags$PublicAccess$LaunchWebDoclink$DefaultNavigatorIconBitmap$FlagsNoRefresh$ViewMapDataset$ViewMapLayout$Index$ViewFormat$Comment$ACTIONS$Readers$Collation1$Collation2$Collation3$Collation4$Collation5$Collation6$Collation7$Collation8$Collation9$Collation10$FormFormula$Collation11$Collation12$Info$WindowTitle$Fonts$$Script_O$$ScriptNamePickupIDSaveOptions$$Return$Body$FormUsersPrivateTitleBodyCategoriesDocOrder$FormLinks$Script$$FormScript$$$FormScript_OKeyRingFileNamePasswordCommonNameOrganizationOrganizationalUnitLocalityStateProvinceCountryValidDaysHTML$NoBackgroundOverride$NavImagemap$WebFlagsUntitledUntitled2ValidFromValidToContactNameEMailPhoneCommentsIssuerCommonNameOrgIssuerOrgOrgUnitIssuerOrgUnitIssuerLocalityStateIssuerStateIssuerCountryValidBegDateValidEndDateRequestTypeRequestActionCertificate$SelQuery$SCRIPTOBJ_6$SCRIPTOBJ_7$SCRIPTOBJ_8$ViewGlobalScript_OSendToFromSubjectargEndDateTempIsRootTempKeyFileNameCatagoriesHideSiteCertCompKeyFileNameEntryLabelSubjCommonNameIssCommonNameSubjOrganizationIssOrganizationSubjOrgUnitIssOrgUnitSubjCityIssCitySubjStateIssStateSubjCountryIssCountryCertStartDateCertEndDatePickupCertificateApproved$HTMLBodyTag$$PickupCertificate$PickupCertificate_O$$QueryOpenAgentREASON$AssistType$AssistLastRun$AssistDocCount$AssistFlags$AssistTrigger$AssistInfo$AssistQuery$AssistAction$AssistAction_Ex$AssistRunInfo$AssistVersionCAKeyFileCASiteUrlSendEmailValidPeriodValidUnitFullNameIssueCountryTypeForm$RevisionsGraphicComputedHTML
  9202. WebPageFrameInitialContentFrames - Initial Content Frame
  9203. CN=Scott Davidson/O=Iris
  9204. ########################################################
  9205. <hr width="80%">  <br><a href="/certca.nsf/CertRequestServer?OpenForm&SpecialAction=RequestAction" target="ContentsFrame"> <b>Request Server Certificate</b> </a>  <br><br><a href="/certca.nsf/WebCertPickup?OpenForm" target="ContentsFrame"> <b>Pick Up Certificate</b> </a>   <br><br><a href="/certca.nsf/CAPickup/CACert?OpenDocument" target="ContentsFrame"> <b>Accept This Authority In Your Server</b></a>  <br><br><hr width="80%">  <br><a href="/certca.nsf/CertSubmit?OpenForm&SpecialAction=RequestAction" target="ContentsFrame"> <b>Register Browser Certificate In Address Book</b></a>WebPageForIndexFrameFrames - Index Frame
  9206. CN=Scott Davidson/O=IrisCN=Andrew Wharton/O=Iris
  9207. #############################################
  9208. ##########################################################
  9209. ##########################################################
  9210. ##########################################################
  9211. ##########################################################
  9212. ##########################################################
  9213. ##########################################################
  9214. ##########################################################
  9215. ##########################################################
  9216. ##########################################################
  9217. ##########################################################
  9218. ##########################################################
  9219. ##########################################################
  9220. ##########################################################
  9221. ##########################################################
  9222. ##########################################################
  9223. ##########################################################
  9224. ##########################################################
  9225. ##########################################################
  9226. ##########################################################
  9227. ##########################################################
  9228. ##########################################################
  9229. ##########################################################
  9230. ##########################################################
  9231. ##########################################################
  9232. ##########################################################
  9233. ##########################################################
  9234. ##########################################################
  9235. ##########################################################
  9236. ##########################################################
  9237. ##########################################################
  9238. ##########################################################
  9239. ##########################################################
  9240. ##########################################################
  9241. ##########################################################
  9242. ##########################################################
  9243. ##########################################################
  9244. ##########################################################
  9245. ##########################################################
  9246. ##########################################################
  9247. ##########################################################
  9248. ##########################################################
  9249. ##########################################################
  9250. ##########################################################
  9251. ##########################################################
  9252. ##########################################################
  9253.